From 31f7eae82272026571fd8e55292a1498e6b8f31f Mon Sep 17 00:00:00 2001 From: David Ham Date: Mon, 3 May 2021 21:50:22 +0100 Subject: [PATCH 001/160] Support containers in LaTeX output. Support containers in the LaTeX writer by outputting the start and end of a LaTeX group, wrapping the beginning and end of a LaTeX environment. The class name(s) are passed as an argument to the environment. --- sphinx/texinputs/sphinx.sty | 5 +++++ sphinx/texinputs/sphinxlatexcontainers.sty | 12 ++++++++++++ sphinx/writers/latex.py | 6 ++++-- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 sphinx/texinputs/sphinxlatexcontainers.sty diff --git a/sphinx/texinputs/sphinx.sty b/sphinx/texinputs/sphinx.sty index 108c18b644f..f6964e446b8 100644 --- a/sphinx/texinputs/sphinx.sty +++ b/sphinx/texinputs/sphinx.sty @@ -270,6 +270,11 @@ \input{sphinxlatexshadowbox.sty} +%% CONTAINERS +% +\input{sphinxlatexcontainers.sty} + + %% PYGMENTS % stylesheet for highlighting with pygments \RequirePackage{sphinxhighlight} diff --git a/sphinx/texinputs/sphinxlatexcontainers.sty b/sphinx/texinputs/sphinxlatexcontainers.sty new file mode 100644 index 00000000000..1372619916b --- /dev/null +++ b/sphinx/texinputs/sphinxlatexcontainers.sty @@ -0,0 +1,12 @@ +%% CONTAINER DIRECTIVES +% +% change this info string if making any custom modification +\ProvidesFile{sphinxlatexcontainers.sty}[2021/05/03 containers] + +% The purpose of this file is to provide a dummy environment sphinxcontainer +% which will be inserted for every container directive the container class +% name will be passed as the argument to the environment. User-defined +% formatting of directives can be achieved by renewing the definition of +% this environment, and branching on the value of the argument. + +\newenvironment{sphinxcontainer}[1]{}{} \ No newline at end of file diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 546db9e31be..4db75d1ef3d 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1975,10 +1975,12 @@ def depart_compound(self, node: Element) -> None: pass def visit_container(self, node: Element) -> None: - pass + classes = node.get('classes', []) + self.body.append( + '\n\\bgroup\\begin{sphinxcontainer}{%s}' % ' '.join(classes)) def depart_container(self, node: Element) -> None: - pass + self.body.append('\n\\end{sphinxcontainer}\\egroup') def visit_decoration(self, node: Element) -> None: pass From 1b03748f689bb87b299ee6ed15081e76458d49be Mon Sep 17 00:00:00 2001 From: David Ham Date: Mon, 3 May 2021 22:29:11 +0100 Subject: [PATCH 002/160] Grammar. --- sphinx/texinputs/sphinxlatexcontainers.sty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/texinputs/sphinxlatexcontainers.sty b/sphinx/texinputs/sphinxlatexcontainers.sty index 1372619916b..25b3d90b27b 100644 --- a/sphinx/texinputs/sphinxlatexcontainers.sty +++ b/sphinx/texinputs/sphinxlatexcontainers.sty @@ -4,7 +4,7 @@ \ProvidesFile{sphinxlatexcontainers.sty}[2021/05/03 containers] % The purpose of this file is to provide a dummy environment sphinxcontainer -% which will be inserted for every container directive the container class +% which will be inserted for every container directive. The container class % name will be passed as the argument to the environment. User-defined % formatting of directives can be achieved by renewing the definition of % this environment, and branching on the value of the argument. From 8ba93dd21fa82e745cae5caf3a57cd6442dafda9 Mon Sep 17 00:00:00 2001 From: David Ham Date: Tue, 4 May 2021 16:32:17 +0100 Subject: [PATCH 003/160] Refactor to one environment per class. Also rename sphinxcontainer to sphinxclass. --- sphinx/texinputs/sphinxlatexcontainers.sty | 10 +++++----- sphinx/writers/latex.py | 8 +++++--- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/sphinx/texinputs/sphinxlatexcontainers.sty b/sphinx/texinputs/sphinxlatexcontainers.sty index 25b3d90b27b..5a6047ec93e 100644 --- a/sphinx/texinputs/sphinxlatexcontainers.sty +++ b/sphinx/texinputs/sphinxlatexcontainers.sty @@ -3,10 +3,10 @@ % change this info string if making any custom modification \ProvidesFile{sphinxlatexcontainers.sty}[2021/05/03 containers] -% The purpose of this file is to provide a dummy environment sphinxcontainer -% which will be inserted for every container directive. The container class +% The purpose of this file is to provide a dummy environment sphinxclass +% which will be inserted for each class in each container directive. The class % name will be passed as the argument to the environment. User-defined -% formatting of directives can be achieved by renewing the definition of -% this environment, and branching on the value of the argument. +% formatting of directives can be achieved by renewing the definition of this +% environment, and branching on the value of the argument. -\newenvironment{sphinxcontainer}[1]{}{} \ No newline at end of file +\newenvironment{sphinxclass}[1]{}{} \ No newline at end of file diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 4db75d1ef3d..1d5bf20fc06 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1976,11 +1976,13 @@ def depart_compound(self, node: Element) -> None: def visit_container(self, node: Element) -> None: classes = node.get('classes', []) - self.body.append( - '\n\\bgroup\\begin{sphinxcontainer}{%s}' % ' '.join(classes)) + for c in classes: + self.body.append('\n\\bgroup\\begin{sphinxclass}{%s}' % c) def depart_container(self, node: Element) -> None: - self.body.append('\n\\end{sphinxcontainer}\\egroup') + classes = node.get('classes', []) + for c in classes: + self.body.append('\n\\end{sphinxclass}\\egroup') def visit_decoration(self, node: Element) -> None: pass From d01e776c814a3f9eaa479ec7eb63fb4fc33a0143 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Thu, 6 May 2021 15:10:06 +0200 Subject: [PATCH 004/160] Add `Sphinx.add_html_assets_in_all_pages` This new method in the `Sphinx` object allows extensions to communicate to Sphinx that it's preferred to include HTML assets in all the pages. However, it's extensions developers' responsability to follow this config and decide whether or not include the assets required. Extensions developers' can check `Sphinx.html_assets_in_all_pages` together with any other logic they may have to decide if the assets will be included in the rendered page or not. Closes #9115 --- CHANGES | 3 +++ sphinx/application.py | 8 ++++++++ sphinx/ext/mathjax.py | 2 +- tests/test_ext_math.py | 13 +++++++++++++ 4 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index a71f25aaa5c..d970b7ec66c 100644 --- a/CHANGES +++ b/CHANGES @@ -30,6 +30,9 @@ Features added * #9097: Optimize the paralell build * #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using regular expressions +* #9174: Add ``Sphinx.add_html_assets_in_all_pages`` to tell extensions to include + HTML assets in all the pages. Extensions can check this via + ``Sphinx.html_assets_in_all_pages`` Bugs fixed diff --git a/sphinx/application.py b/sphinx/application.py index 4735beffd60..59e1683b355 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -146,6 +146,7 @@ def __init__(self, srcdir: str, confdir: Optional[str], outdir: str, doctreedir: self.project: Project = None self.registry = SphinxComponentRegistry() self.html_themes: Dict[str, str] = {} + self.html_assets_in_all_pages: bool = False # validate provided directories self.srcdir = abspath(srcdir) @@ -1181,6 +1182,13 @@ def add_env_collector(self, collector: Type[EnvironmentCollector]) -> None: logger.debug('[app] adding environment collector: %r', collector) collector().enable(self) + def add_html_assets_in_all_pages(self): + """Tell extensions to insert HTML assets in all the pages. + + .. versionadded: 4.1 + """ + self.html_assets_in_all_pages = True + def add_html_theme(self, name: str, theme_path: str) -> None: """Register a HTML Theme. diff --git a/sphinx/ext/mathjax.py b/sphinx/ext/mathjax.py index 301c0d69923..8fc63cb9ea8 100644 --- a/sphinx/ext/mathjax.py +++ b/sphinx/ext/mathjax.py @@ -79,7 +79,7 @@ def install_mathjax(app: Sphinx, pagename: str, templatename: str, context: Dict 'mathjax extension to work') domain = cast(MathDomain, app.env.get_domain('math')) - if domain.has_equations(pagename): + if app.html_assets_in_all_pages or domain.has_equations(pagename): # Enable mathjax only if equations exists options = {'async': 'async'} if app.config.mathjax_options: diff --git a/tests/test_ext_math.py b/tests/test_ext_math.py index ebe2c0f38ea..52d49ec4308 100644 --- a/tests/test_ext_math.py +++ b/tests/test_ext_math.py @@ -256,3 +256,16 @@ def test_mathjax_is_not_installed_if_no_equations(app, status, warning): content = (app.outdir / 'index.html').read_text() assert 'MathJax.js' not in content + + +@pytest.mark.sphinx('html', testroot='ext-math', + confoverrides={'extensions': ['sphinx.ext.mathjax']}) +def test_mathjax_is_installed_if_no_equations_when_forced(app, status, warning): + app.add_html_assets_in_all_pages() + app.builder.build_all() + + content = (app.outdir / 'index.html').read_text() + assert MATHJAX_URL in content + + content = (app.outdir / 'nomath.html').read_text() + assert MATHJAX_URL in content From 61765f3f4623bb4bd39acf6dd726cb40124862f0 Mon Sep 17 00:00:00 2001 From: David Ham Date: Wed, 12 May 2021 21:03:04 +0100 Subject: [PATCH 005/160] sphinxclass environment definition docutils style. --- sphinx/texinputs/sphinxlatexcontainers.sty | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/sphinx/texinputs/sphinxlatexcontainers.sty b/sphinx/texinputs/sphinxlatexcontainers.sty index 5a6047ec93e..1036fde539a 100644 --- a/sphinx/texinputs/sphinxlatexcontainers.sty +++ b/sphinx/texinputs/sphinxlatexcontainers.sty @@ -9,4 +9,9 @@ % formatting of directives can be achieved by renewing the definition of this % environment, and branching on the value of the argument. -\newenvironment{sphinxclass}[1]{}{} \ No newline at end of file +\ifx\sphinxclass\undefined % poor man's "provideenvironment" + \newenvironment{sphinxclass}[1]{ + \def\sphinxClassFunctionName{sphinxCLASS#1}% + \csname \sphinxClassFunctionName \endcsname}% + {\csname end\sphinxClassFunctionName \endcsname}% +\fi \ No newline at end of file From ca47ac06546230b3db5666176a28b9b0d3199fa1 Mon Sep 17 00:00:00 2001 From: David Ham Date: Wed, 12 May 2021 21:05:53 +0100 Subject: [PATCH 006/160] Remove superfluous groupings. --- sphinx/writers/latex.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 1d5bf20fc06..9a9c63b8fb3 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1977,12 +1977,12 @@ def depart_compound(self, node: Element) -> None: def visit_container(self, node: Element) -> None: classes = node.get('classes', []) for c in classes: - self.body.append('\n\\bgroup\\begin{sphinxclass}{%s}' % c) + self.body.append('\n\\begin{sphinxclass}{%s}' % c) def depart_container(self, node: Element) -> None: classes = node.get('classes', []) for c in classes: - self.body.append('\n\\end{sphinxclass}\\egroup') + self.body.append('\n\\end{sphinxclass}') def visit_decoration(self, node: Element) -> None: pass From 180c3c92a414534bd43b8470a9cc48e8e8c73d10 Mon Sep 17 00:00:00 2001 From: David Ham Date: Sat, 15 May 2021 21:53:36 +0100 Subject: [PATCH 007/160] Test for LaTeX container output. --- tests/roots/test-latex-container/conf.py | 0 tests/roots/test-latex-container/index.rst | 4 ++++ tests/test_build_latex.py | 8 ++++++++ 3 files changed, 12 insertions(+) create mode 100644 tests/roots/test-latex-container/conf.py create mode 100644 tests/roots/test-latex-container/index.rst diff --git a/tests/roots/test-latex-container/conf.py b/tests/roots/test-latex-container/conf.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/roots/test-latex-container/index.rst b/tests/roots/test-latex-container/index.rst new file mode 100644 index 00000000000..339a625221d --- /dev/null +++ b/tests/roots/test-latex-container/index.rst @@ -0,0 +1,4 @@ +.. container:: classname + + text + \ No newline at end of file diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index bb1904d2c2f..7bb747cb858 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -1599,3 +1599,11 @@ def test_latex_elements_extrapackages(app, status, warning): def test_latex_nested_tables(app, status, warning): app.builder.build_all() assert '' == warning.getvalue() + + +@pytest.mark.sphinx('latex', testroot='latex-container') +def test_latex_container(app, status, warning): + app.builder.build_all() + result = (app.outdir / 'python.tex').read_text() + assert r'\begin{sphinxclass}{classname}' in result + assert r'\end{sphinxclass}' in result From 70ee9bcd6accc8e67288e37d8976e43094ea9c74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 25 May 2021 10:56:22 +0200 Subject: [PATCH 008/160] Tutorial link in front page, audience, objectives, and prerequisites --- doc/_templates/index.html | 12 +++++++----- doc/contents.rst | 1 + doc/tutorial/index.rst | 25 +++++++++++++++++++++++++ 3 files changed, 33 insertions(+), 5 deletions(-) create mode 100644 doc/tutorial/index.rst diff --git a/doc/_templates/index.html b/doc/_templates/index.html index a37579c2925..a688d17c174 100644 --- a/doc/_templates/index.html +++ b/doc/_templates/index.html @@ -52,23 +52,25 @@

{%trans%}Documentation{%endtrans%}

- {%- if hasdoc('search') %}{%- endif %} + - {%- if hasdoc('genindex') %}{%- endif %} + {%- if hasdoc('search') %}{%- endif %} - + {%- if hasdoc('genindex') %}{%- endif %} + diff --git a/doc/contents.rst b/doc/contents.rst index eb694629244..21a27e233cb 100644 --- a/doc/contents.rst +++ b/doc/contents.rst @@ -7,6 +7,7 @@ Sphinx documentation contents :maxdepth: 2 usage/index + tutorial/index development/index man/index diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst new file mode 100644 index 00000000000..81845c55921 --- /dev/null +++ b/doc/tutorial/index.rst @@ -0,0 +1,25 @@ +.. _tutorial: + +=============== +Sphinx tutorial +=============== + +In this tutorial you will build a simple documentation project using Sphinx, +and view it in your web browser as HTML. +We will include narrative, handwritten documentation, +as well as autogenerated API documentation. + +The tutorial is aimed towards people willing to learn +the fundamentals of Sphinx, +how projects are created and structured, +and how to contribute to an existing project. +To showcase Sphinx automatic documentation generation capabilities +we will use Python, which is the default :term:`domain`: +even though several other languages are supported, +they all work in a similar way. + +To follow the tutorial you will need a working Python installation for development. +We will use *Python virtual environments* to create our project, +you can read more about them in the `Python Packaging User Guide`_. + +.. _Python Packaging User Guide: https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment From 39b5564c630edcc0a2b84be874eb3285dda3de11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 26 May 2021 20:58:57 +0200 Subject: [PATCH 009/160] Beginning of the tutorial, tweaks to introduction --- doc/_static/tutorial/lumache-first-light.png | Bin 0 -> 52126 bytes doc/tutorial/index.rst | 152 +++++++++++++++++-- 2 files changed, 140 insertions(+), 12 deletions(-) create mode 100644 doc/_static/tutorial/lumache-first-light.png diff --git a/doc/_static/tutorial/lumache-first-light.png b/doc/_static/tutorial/lumache-first-light.png new file mode 100644 index 0000000000000000000000000000000000000000..fbf4aec8a3e4ea4d008f3159ee2891cccb5926ef GIT binary patch literal 52126 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 Hq2K=kw|3Yn literal 0 HcmV?d00001 diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 81845c55921..ef4d1fa9455 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -5,21 +5,149 @@ Sphinx tutorial =============== In this tutorial you will build a simple documentation project using Sphinx, -and view it in your web browser as HTML. -We will include narrative, handwritten documentation, +and view it in your browser as HTML. +The project will include narrative, handwritten documentation, as well as autogenerated API documentation. -The tutorial is aimed towards people willing to learn -the fundamentals of Sphinx, -how projects are created and structured, -and how to contribute to an existing project. +The tutorial is aimed towards Sphinx newcomers +willing to learn the fundamentals of how projects are created and structured. +You will create a fictional software library to generate random food recipes +that will serve as a guide throughout the process, +with the objective of properly documenting it. + To showcase Sphinx automatic documentation generation capabilities -we will use Python, which is the default :term:`domain`: -even though several other languages are supported, -they all work in a similar way. +you will use Python, which is the default :term:`domain` +(even though several other languages are supported, +they all work in a similar way). -To follow the tutorial you will need a working Python installation for development. -We will use *Python virtual environments* to create our project, -you can read more about them in the `Python Packaging User Guide`_. +To follow the instructions you will need access to a Linux-like command line +and a basic understanding of how it works, +as well as a working Python installation for development, +since you will use *Python virtual environments* to create the project +(you can read more about them in the `Python Packaging User Guide`_). .. _Python Packaging User Guide: https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment + +Getting started +--------------- + +Setting up our project and development environment +.................................................. + +On a new directory, +create a file called ``README.rst`` +with the following contents: + +.. code-block:: rest + + Lumache + ======= + + **Lumache** (/luˈmake/) is a Python library for cooks and food lovers + that creates recipes mixing random ingredients. + +It is a good moment to create a Python virtual environment +and install the required tools. +For that, open a command line terminal, +``cd`` into the directory you just created, +and run the following commands: + +.. code-block:: bash + + $ python -m venv .venv + $ source .venv/bin/activate + (.venv) $ python -m pip install sphinx + +.. note:: + + The installation method used above + is described in more detail in :ref:`install-pypi`. + For the rest of this tutorial, + the instructions will assume a Python virtual environment. + +If you executed these instructions correctly, +you should have the Sphinx command line tools available. +You can do a basic verification running this command: + +.. code-block:: bash + + (.venv) $ sphinx-build --version + sphinx-build 4.0.2 + +If you see a similar output, you are on the right path! + +Creating the documentation layout +................................. + +Then, from the command line, +run the following command: + +.. code-block:: bash + + (.venv) $ sphinx-quickstart docs + +This will present you a series of questions +required to create the basic directory and configuration layout for your project +inside the `docs/` folder. +To proceed, introduce these answers: + +- ``> Separate source and build directories (y/n) [n]``: Write "``y``" (without quotes) + and press :kbd:`Enter`. +- ``> Project name``: Write "``Lumache``" (without quotes) + and press :kbd:`Enter`. +- ``> Author name(s)``: Write "``Graziella``" (without quotes) + and press :kbd:`Enter`. +- ``> Project release []``: Write "``0.1``" (without quotes) + and press :kbd:`Enter`. +- ``> Project language [en]``: Leave it empty (the default, English) + and press :kbd:`Enter`. + +After the last question, +you will see the new ``docs`` directory with some content:: + + docs/ + ├── build + ├── make.bat + ├── Makefile + └── source + ├── conf.py + ├── index.rst + ├── _static + └── _templates + +These files are: + +- ``build/``: An empty directory (for now) + that will hold the rendered documentation. +- ``make.bat`` and ``Makefile``: Convenience scripts + to simplify some common Sphinx operations, + such as rendering the content. +- ``source/conf.py``: A Python script holding the configuration of the Sphinx project. + It contains the project name and release you specified to ``sphinx-quickstart``, + as well as some extra configuration keys. +- ``source/index.rst``: The :term:`master document` of the project, + which serves as welcome page + and contains the root of the "table of contents tree" (or *toctree*). + +Thanks to this bootstrapping step, +you already have everything needed +to render the documentation as HTML for the first time. +To do that, run this command: + +.. code-block:: bash + + (.venv) $ sphinx-build -b html docs/source/ docs/build/html + +And finally, open `docs/build/html/index.html` in your browser. +You should see something like this: + +.. image:: /_static/tutorial/lumache-first-light.png + +*Eccolo!* You created your first HTML documentation using Sphinx. + +.. todo:: + + To make this self-contained, we need: + + * Basic editing of the ``index.rst``, + * A mention to "next steps" to the rest of the documentation From 337ee6afaa3de8e698406b0077eca7e01e880d21 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 27 May 2021 18:17:33 +0200 Subject: [PATCH 010/160] Style --- doc/tutorial/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index ef4d1fa9455..9da19fd54c7 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -143,7 +143,7 @@ You should see something like this: .. image:: /_static/tutorial/lumache-first-light.png -*Eccolo!* You created your first HTML documentation using Sphinx. +There we go! You created your first HTML documentation using Sphinx. .. todo:: From ffa8e110d0fd064d9e59c6fe58b7d25eaa666088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 27 May 2021 21:32:49 +0200 Subject: [PATCH 011/160] Add index tweaks --- doc/tutorial/index.rst | 53 ++++++++++++++++++++++++++++++++++++++---- 1 file changed, 49 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 9da19fd54c7..1c1bad29be6 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -145,9 +145,54 @@ You should see something like this: There we go! You created your first HTML documentation using Sphinx. -.. todo:: +Making some tweaks to the index +............................... - To make this self-contained, we need: +The ``index.rst`` file that ``sphinx-quickstart`` created +has some content already, +and it gets rendered as the front page of our HTML documentation. +It is written in reStructuredText, +a powerful markup language. - * Basic editing of the ``index.rst``, - * A mention to "next steps" to the rest of the documentation +Modify the file like follows: + +.. code-block:: rest + + Welcome to Lumache's documentation! + =================================== + + **Lumache** (/luˈmake/) is a Python library for cooks and food lovers + that creates recipes mixing random ingredients. + It pulls data from the `Open Food Facts database `_ + and offers a *simple* and *intuitive* API. + + .. note:: + + This project is under active development. + +This showcases several features of the reStructuredText syntax, including: + +- a **section header** using ``===`` for the underline, +- two examples of **inline markup**: ``**bold**`` and ``*italics*``, +- an **inline external link**, +- and a ``note`` **admonition**. + +Now, to render it with the new content, +you can use the ``sphinx-build`` command as before, +or leverage the convenience script like this: + +.. code-block:: bash + + (.env) $ cd docs/ + (.env) $ make html + +After running this command, +you will see that ``index.html`` reflects the new changes! + +Where to go from here +--------------------- + +This tutorial covered +the very first steps to create a documentation project with Sphinx. +To continue learning more about Sphinx, +check out the :ref:`rest of the documentation `. From 1631291b0e63d02c9eb35ed6681093540b8cf66f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sat, 29 May 2021 13:21:47 +0200 Subject: [PATCH 012/160] Consistent heading styles --- doc/tutorial/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 1c1bad29be6..147c28c3dd9 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -32,7 +32,7 @@ Getting started --------------- Setting up our project and development environment -.................................................. +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ On a new directory, create a file called ``README.rst`` @@ -77,7 +77,7 @@ You can do a basic verification running this command: If you see a similar output, you are on the right path! Creating the documentation layout -................................. +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Then, from the command line, run the following command: @@ -146,7 +146,7 @@ You should see something like this: There we go! You created your first HTML documentation using Sphinx. Making some tweaks to the index -............................... +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The ``index.rst`` file that ``sphinx-quickstart`` created has some content already, From bfd3b51435c2903e1224d7ee15183e93630fb65a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sat, 29 May 2021 13:22:21 +0200 Subject: [PATCH 013/160] Style --- doc/tutorial/index.rst | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 147c28c3dd9..60ddfd7b999 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -117,15 +117,26 @@ you will see the new ``docs`` directory with some content:: These files are: -- ``build/``: An empty directory (for now) +``build/`` + + An empty directory (for now) that will hold the rendered documentation. -- ``make.bat`` and ``Makefile``: Convenience scripts + +``make.bat`` and ``Makefile`` + + Convenience scripts to simplify some common Sphinx operations, such as rendering the content. -- ``source/conf.py``: A Python script holding the configuration of the Sphinx project. + +``source/conf.py`` + + A Python script holding the configuration of the Sphinx project. It contains the project name and release you specified to ``sphinx-quickstart``, as well as some extra configuration keys. -- ``source/index.rst``: The :term:`master document` of the project, + +``source/index.rst`` + + The :term:`master document` of the project, which serves as welcome page and contains the root of the "table of contents tree" (or *toctree*). From d6cb2d0c38204989d4827e2c6f93fdd05fba3604 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sat, 29 May 2021 13:22:36 +0200 Subject: [PATCH 014/160] Use more appropriate terminology for emphasized text --- doc/tutorial/index.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 60ddfd7b999..52087db5ef0 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -184,7 +184,8 @@ Modify the file like follows: This showcases several features of the reStructuredText syntax, including: - a **section header** using ``===`` for the underline, -- two examples of **inline markup**: ``**bold**`` and ``*italics*``, +- two examples of **inline markup**: ``**strong emphasis**`` (typically bold) + and ``*emphasis*`` (typically italics), - an **inline external link**, - and a ``note`` **admonition**. From 5b3e5d887b680e326fc2eecda60af959cba7c3d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sat, 29 May 2021 13:44:26 +0200 Subject: [PATCH 015/160] Amend code documentation introduction --- doc/tutorial/index.rst | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 52087db5ef0..2db15abd4d2 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -15,10 +15,16 @@ You will create a fictional software library to generate random food recipes that will serve as a guide throughout the process, with the objective of properly documenting it. -To showcase Sphinx automatic documentation generation capabilities -you will use Python, which is the default :term:`domain` -(even though several other languages are supported, -they all work in a similar way). +To showcase Sphinx capabilities for code documentation +you will use Python, +which also supports *automatic* documentation generation. + +.. note:: + + Several other languages are natively supported in Sphinx + for *manual* code documentation, + however they require extensions for *automatic* code documentation, + like `Breathe `_. To follow the instructions you will need access to a Linux-like command line and a basic understanding of how it works, From bfca913f1695969f8cb37bfde5ab8609b3b7a907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sat, 29 May 2021 19:15:15 +0200 Subject: [PATCH 016/160] Move virtual environment explanation to installation --- doc/tutorial/index.rst | 5 +---- doc/usage/installation.rst | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 2db15abd4d2..d84b7d4424f 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -29,10 +29,7 @@ which also supports *automatic* documentation generation. To follow the instructions you will need access to a Linux-like command line and a basic understanding of how it works, as well as a working Python installation for development, -since you will use *Python virtual environments* to create the project -(you can read more about them in the `Python Packaging User Guide`_). - -.. _Python Packaging User Guide: https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment +since you will use *Python virtual environments* to create the project. Getting started --------------- diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index f0384ea9dda..985f7fa340a 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -185,6 +185,30 @@ 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 Installation +and remove the need to use administrator privileges. +To create a virtual environment in the ``.venv`` directory, +use the following command. + +:: + + $ python -m venv .venv + +You can read more about them in the `Python Packaging User Guide`_. + +.. _Python Packaging User Guide: https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/#creating-a-virtual-environment + +.. warning:: + + Note like in some Linux distributions like Debian and Ubuntu + this might require an extra installation step:: + + $ apt-get install python3-venv Docker ------ From 9a9433e4037270c63ebc33831aa8c2b6dde37a77 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 30 May 2021 13:50:07 +0900 Subject: [PATCH 017/160] Fix #9283: autodoc: failed to build doc for attribute not commented Autoattribute directive should check the existence of instance attribute that is defined inside __init__() but not having comments before accessing it. --- CHANGES | 2 ++ sphinx/ext/autodoc/__init__.py | 27 +++++++++++++++++++ .../target/instance_variable.py | 1 + tests/test_ext_autodoc_autoattribute.py | 11 ++++++++ 4 files changed, 41 insertions(+) diff --git a/CHANGES b/CHANGES index 886f8857934..60ea08bfa63 100644 --- a/CHANGES +++ b/CHANGES @@ -55,6 +55,8 @@ Bugs fixed undocumented * #9185: autodoc: typehints for overloaded functions and methods are inaccurate * #9250: autodoc: The inherited method not having docstring is wrongly parsed +* #9283: autodoc: autoattribute directive failed to generate document for an + attribute not having any comment * #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index ec1472e202c..7cf06752d7a 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -2356,9 +2356,29 @@ def is_runtime_instance_attribute(self, parent: Any) -> bool: # An instance variable defined in __init__(). if self.get_attribute_comment(parent, self.objpath[-1]): # type: ignore return True + elif self.is_runtime_instance_attribute_not_commented(parent): + return True else: return False + def is_runtime_instance_attribute_not_commented(self, parent: Any) -> bool: + """Check the subject is an attribute defined in __init__() without comment.""" + for cls in inspect.getmro(parent): + try: + module = safe_getattr(cls, '__module__') + qualname = safe_getattr(cls, '__qualname__') + + analyzer = ModuleAnalyzer.for_module(module) + analyzer.analyze() + if qualname and self.objpath: + key = '.'.join([qualname, self.objpath[-1]]) + if key in analyzer.tagorder: + return True + except (AttributeError, PycodeError): + pass + + return None + def import_object(self, raiseerror: bool = False) -> bool: """Check the existence of runtime instance attribute when failed to import the attribute.""" @@ -2389,6 +2409,13 @@ def should_suppress_value_header(self) -> bool: return (self.object is self.RUNTIME_INSTANCE_ATTRIBUTE or super().should_suppress_value_header()) + def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: + if (self.object is self.RUNTIME_INSTANCE_ATTRIBUTE and + self.is_runtime_instance_attribute_not_commented(self.parent)): + return None + else: + return super().get_doc(ignore) # type: ignore + class UninitializedInstanceAttributeMixin(DataDocumenterMixinBase): """ diff --git a/tests/roots/test-ext-autodoc/target/instance_variable.py b/tests/roots/test-ext-autodoc/target/instance_variable.py index ae86d1edb1e..1d393bc8743 100644 --- a/tests/roots/test-ext-autodoc/target/instance_variable.py +++ b/tests/roots/test-ext-autodoc/target/instance_variable.py @@ -8,3 +8,4 @@ class Bar(Foo): def __init__(self): self.attr2 = None #: docstring bar self.attr3 = None #: docstring bar + self.attr4 = None diff --git a/tests/test_ext_autodoc_autoattribute.py b/tests/test_ext_autodoc_autoattribute.py index 5e72202342b..20317b8da39 100644 --- a/tests/test_ext_autodoc_autoattribute.py +++ b/tests/test_ext_autodoc_autoattribute.py @@ -100,6 +100,17 @@ def test_autoattribute_instance_variable_in_alias(app): ] +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_autoattribute_instance_variable_without_comment(app): + actual = do_autodoc(app, 'attribute', 'target.instance_variable.Bar.attr4') + assert list(actual) == [ + '', + '.. py:attribute:: Bar.attr4', + ' :module: target.instance_variable', + '', + ] + + @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autoattribute_slots_variable_list(app): actual = do_autodoc(app, 'attribute', 'target.slots.Foo.attr') From 1da5ab58083ddfa43b6a8dd57c20f3b672a809e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 31 May 2021 15:48:57 +0200 Subject: [PATCH 018/160] Style fixes Co-authored-by: Steve Piercy --- doc/tutorial/index.rst | 24 +++++++++++++----------- doc/usage/installation.rst | 11 +++++++---- 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index d84b7d4424f..46810c40079 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -34,12 +34,12 @@ since you will use *Python virtual environments* to create the project. Getting started --------------- -Setting up our project and development environment -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Setting up your project and development environment +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -On a new directory, +In a new directory, create a file called ``README.rst`` -with the following contents: +with the following content. .. code-block:: rest @@ -82,16 +82,16 @@ If you see a similar output, you are on the right path! Creating the documentation layout ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Then, from the command line, +Then from the command line, run the following command: .. code-block:: bash (.venv) $ sphinx-quickstart docs -This will present you a series of questions +This will present to you a series of questions required to create the basic directory and configuration layout for your project -inside the `docs/` folder. +inside the ``docs`` folder. To proceed, introduce these answers: - ``> Separate source and build directories (y/n) [n]``: Write "``y``" (without quotes) @@ -106,7 +106,9 @@ To proceed, introduce these answers: and press :kbd:`Enter`. After the last question, -you will see the new ``docs`` directory with some content:: +you will see the new ``docs`` directory with the following content. + +.. code-block:: text docs/ ├── build @@ -168,7 +170,7 @@ and it gets rendered as the front page of our HTML documentation. It is written in reStructuredText, a powerful markup language. -Modify the file like follows: +Modify the file as follows. .. code-block:: rest @@ -192,9 +194,9 @@ This showcases several features of the reStructuredText syntax, including: - an **inline external link**, - and a ``note`` **admonition**. -Now, to render it with the new content, +Now to render it with the new content, you can use the ``sphinx-build`` command as before, -or leverage the convenience script like this: +or leverage the convenience script as follows. .. code-block:: bash diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index 985f7fa340a..69468a4f26a 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -190,8 +190,8 @@ Using virtual environments When installing Sphinx using pip, it is highly recommended to use *virtual environments*, -which isolate the Installation -and remove the need to use administrator privileges. +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. @@ -205,8 +205,11 @@ You can read more about them in the `Python Packaging User Guide`_. .. warning:: - Note like in some Linux distributions like Debian and Ubuntu - this might require an extra installation step:: + Note that in some Linux distributions, such as Debian and Ubuntu, + this might require an extra installation step as follows. + + .. code-block:: bash + $ apt-get install python3-venv From 95519b3c067c54f3a3eddbdc528f8f7a7555c617 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 31 May 2021 16:22:37 +0200 Subject: [PATCH 019/160] Links to relevant reST syntax explanation --- doc/tutorial/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 46810c40079..05ea141af1c 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -189,10 +189,10 @@ Modify the file as follows. This showcases several features of the reStructuredText syntax, including: - a **section header** using ``===`` for the underline, -- two examples of **inline markup**: ``**strong emphasis**`` (typically bold) +- two examples of :ref:`rst-inline-markup`: ``**strong emphasis**`` (typically bold) and ``*emphasis*`` (typically italics), - an **inline external link**, -- and a ``note`` **admonition**. +- and a ``note`` **admonition** (one of the available :ref:`directives `) Now to render it with the new content, you can use the ``sphinx-build`` command as before, From c8a3a2535a4471235008c51119c1a1a99f656392 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 31 May 2021 16:29:09 +0200 Subject: [PATCH 020/160] Be consistent with directory names --- doc/tutorial/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 05ea141af1c..cd103f6218c 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -110,7 +110,7 @@ you will see the new ``docs`` directory with the following content. .. code-block:: text - docs/ + docs ├── build ├── make.bat ├── Makefile @@ -200,7 +200,7 @@ or leverage the convenience script as follows. .. code-block:: bash - (.env) $ cd docs/ + (.env) $ cd docs (.env) $ make html After running this command, From 2b0131d0bcf3e87fcff3359ed3bb09e3e754e5ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 31 May 2021 16:29:55 +0200 Subject: [PATCH 021/160] Be consistent with virtual environment name --- doc/tutorial/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index cd103f6218c..87aec30249c 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -200,8 +200,8 @@ or leverage the convenience script as follows. .. code-block:: bash - (.env) $ cd docs - (.env) $ make html + (.venv) $ cd docs + (.venv) $ make html After running this command, you will see that ``index.html`` reflects the new changes! From ce727e3cfeced9e073e30e2722bba4721a08ad7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 31 May 2021 16:35:35 +0200 Subject: [PATCH 022/160] More style changes --- doc/tutorial/index.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 87aec30249c..68cb8b4cb8f 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -92,7 +92,7 @@ run the following command: This will present to you a series of questions required to create the basic directory and configuration layout for your project inside the ``docs`` folder. -To proceed, introduce these answers: +To proceed, answer each question as follows: - ``> Separate source and build directories (y/n) [n]``: Write "``y``" (without quotes) and press :kbd:`Enter`. @@ -120,7 +120,7 @@ you will see the new ``docs`` directory with the following content. ├── _static └── _templates -These files are: +The purpose of each of these files is: ``build/`` @@ -170,7 +170,7 @@ and it gets rendered as the front page of our HTML documentation. It is written in reStructuredText, a powerful markup language. -Modify the file as follows. +Modify the file as follows: .. code-block:: rest @@ -196,7 +196,7 @@ This showcases several features of the reStructuredText syntax, including: Now to render it with the new content, you can use the ``sphinx-build`` command as before, -or leverage the convenience script as follows. +or leverage the convenience script as follows: .. code-block:: bash From 92335bd6e67dec9d8cadfdfb6d441a440e8dc87e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 22 May 2021 14:13:19 +0900 Subject: [PATCH 023/160] Close #9016: linkcheck builder failed to check the anchors of github.com --- CHANGES | 3 +++ doc/extdev/appapi.rst | 8 ++++++++ sphinx/builders/linkcheck.py | 28 ++++++++++++++++++++++++++++ tests/roots/test-linkcheck/links.txt | 2 ++ tests/test_build_linkcheck.py | 10 +++++++--- 5 files changed, 48 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 6dbfe0ca3e2..fdee645e1bc 100644 --- a/CHANGES +++ b/CHANGES @@ -42,6 +42,9 @@ Features added text * #9176: i18n: Emit a debug message if message catalog file not found under :confval:`locale_dirs` +* #9016: linkcheck: failed to check the anchor of github.com +* #9016: linkcheck: Add a new event :event:`linkcheck-process-uri` to modify + URIs before checking hyperlinks * #1874: py domain: Support union types using ``|`` in info-field-list * #9097: Optimize the paralell build * #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using diff --git a/doc/extdev/appapi.rst b/doc/extdev/appapi.rst index 41318e9d62b..ae81fc5628f 100644 --- a/doc/extdev/appapi.rst +++ b/doc/extdev/appapi.rst @@ -384,6 +384,14 @@ Here is a more detailed list of these events. .. 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 diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index a46b80c081b..7e527b51f68 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -627,6 +627,10 @@ def run(self, **kwargs: Any) -> None: if 'refuri' not in refnode: continue uri = refnode['refuri'] + newuri = self.app.emit_firstresult('linkcheck-process-uri', uri) + if newuri: + uri = newuri + lineno = get_node_line(refnode) uri_info = Hyperlink(uri, self.env.docname, lineno) if uri not in hyperlinks: @@ -636,12 +640,33 @@ def run(self, **kwargs: Any) -> None: for imgnode in self.document.traverse(nodes.image): uri = imgnode['candidates'].get('?') if uri and '://' in uri: + newuri = self.app.emit_firstresult('linkcheck-process-uri', uri) + if newuri: + uri = newuri + lineno = get_node_line(imgnode) uri_info = Hyperlink(uri, self.env.docname, lineno) if uri not in hyperlinks: hyperlinks[uri] = uri_info +def rewrite_github_anchor(app: Sphinx, uri: str) -> Optional[str]: + """Rewrite anchor name of the hyperlink to github.com + + The hyperlink anchors in github.com are dynamically generated. This rewrites + them before checking and makes them comparable. + """ + if re.search('://github.com/', uri) and '#' in uri: + baseuri, anchor = uri.split('#', 1) + if anchor.startswith('user-content-'): + # Ignored when URI is already prefixed. + return None + else: + return f'{baseuri}#user-content-{anchor}' + else: + return None + + def setup(app: Sphinx) -> Dict[str, Any]: app.add_builder(CheckExternalLinksBuilder) app.add_post_transform(HyperlinkCollector) @@ -658,6 +683,9 @@ def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('linkcheck_anchors_ignore', ["^!"], None) app.add_config_value('linkcheck_rate_limit_timeout', 300.0, None) + app.add_event('linkcheck-process-uri') + app.connect('linkcheck-process-uri', rewrite_github_anchor) + return { 'version': 'builtin', 'parallel_read_safe': True, diff --git a/tests/roots/test-linkcheck/links.txt b/tests/roots/test-linkcheck/links.txt index b389414c90c..c21968250d7 100644 --- a/tests/roots/test-linkcheck/links.txt +++ b/tests/roots/test-linkcheck/links.txt @@ -13,6 +13,8 @@ Some additional anchors to exercise ignore code * `Complete nonsense `_ * `Example valid local file `_ * `Example invalid local file `_ +* https://github.com/sphinx-doc/sphinx#documentation +* https://github.com/sphinx-doc/sphinx#user-content-testing .. image:: https://www.google.com/image.png .. figure:: https://www.google.com/image2.png diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index fd7a5482abd..0d24c1dde52 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -65,8 +65,8 @@ def test_defaults_json(app): "info"]: assert attr in row - assert len(content.splitlines()) == 10 - assert len(rows) == 10 + assert len(content.splitlines()) == 12 + assert len(rows) == 12 # the output order of the rows is not stable # due to possible variance in network latency rowsby = {row["uri"]: row for row in rows} @@ -87,7 +87,7 @@ def test_defaults_json(app): assert dnerow['uri'] == 'https://localhost:7777/doesnotexist' assert rowsby['https://www.google.com/image2.png'] == { 'filename': 'links.txt', - 'lineno': 18, + 'lineno': 20, 'status': 'broken', 'code': 0, 'uri': 'https://www.google.com/image2.png', @@ -101,6 +101,10 @@ def test_defaults_json(app): # images should fail assert "Not Found for url: https://www.google.com/image.png" in \ rowsby["https://www.google.com/image.png"]["info"] + # The anchor of the URI for github.com is automatically modified + assert 'https://github.com/sphinx-doc/sphinx#documentation' not in rowsby + assert 'https://github.com/sphinx-doc/sphinx#user-content-documentation' in rowsby + assert 'https://github.com/sphinx-doc/sphinx#user-content-testing' in rowsby @pytest.mark.sphinx( From 565713d2284b638d922255924faab49b619da6ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 31 May 2021 18:03:04 +0200 Subject: [PATCH 024/160] Change Pygments lexer to account for prompt --- doc/tutorial/index.rst | 10 +++++----- doc/usage/installation.rst | 5 ++--- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 68cb8b4cb8f..c42189fb9f3 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -55,7 +55,7 @@ For that, open a command line terminal, ``cd`` into the directory you just created, and run the following commands: -.. code-block:: bash +.. code-block:: console $ python -m venv .venv $ source .venv/bin/activate @@ -72,7 +72,7 @@ If you executed these instructions correctly, you should have the Sphinx command line tools available. You can do a basic verification running this command: -.. code-block:: bash +.. code-block:: console (.venv) $ sphinx-build --version sphinx-build 4.0.2 @@ -85,7 +85,7 @@ Creating the documentation layout Then from the command line, run the following command: -.. code-block:: bash +.. code-block:: console (.venv) $ sphinx-quickstart docs @@ -150,7 +150,7 @@ you already have everything needed to render the documentation as HTML for the first time. To do that, run this command: -.. code-block:: bash +.. code-block:: console (.venv) $ sphinx-build -b html docs/source/ docs/build/html @@ -198,7 +198,7 @@ Now to render it with the new content, you can use the ``sphinx-build`` command as before, or leverage the convenience script as follows: -.. code-block:: bash +.. code-block:: console (.venv) $ cd docs (.venv) $ make html diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index 69468a4f26a..249b9a095cc 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -208,10 +208,9 @@ You can read more about them in the `Python Packaging User Guide`_. Note that in some Linux distributions, such as Debian and Ubuntu, this might require an extra installation step as follows. - .. code-block:: bash - + .. code-block:: console - $ apt-get install python3-venv + $ apt-get install python3-venv Docker ------ From 009c608b6b8a3b5352fcf86f51a839b5f4d94e7a Mon Sep 17 00:00:00 2001 From: Rohit Bohara Date: Tue, 1 Jun 2021 13:21:36 +0200 Subject: [PATCH 025/160] Add asvin in EXAMPLES add asvin in documentation using sphinx_rtd_theme list --- EXAMPLES | 1 + 1 file changed, 1 insertion(+) diff --git a/EXAMPLES b/EXAMPLES index 843435b1d3c..2942739b546 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -170,6 +170,7 @@ Documentation using sphinx_rtd_theme * `Arcade `__ * `aria2 `__ * `ASE `__ +* `asvin `__ * `Autofac `__ * `BigchainDB `__ * `Blender Reference Manual `__ From 90470b094e61ddb943fc1b8e645ca14516aff5c3 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 2 Jun 2021 23:30:29 +0900 Subject: [PATCH 026/160] Close #9268: python_use_unqualified_type_names supports type field --- CHANGES | 2 ++ sphinx/domains/python.py | 10 ++++++++++ .../index.rst | 4 ++++ tests/test_domain_py.py | 6 ++++++ 4 files changed, 22 insertions(+) diff --git a/CHANGES b/CHANGES index 879ae64ebdb..32cb7b4057b 100644 --- a/CHANGES +++ b/CHANGES @@ -44,6 +44,8 @@ Features added * #9176: i18n: Emit a debug message if message catalog file not found under :confval:`locale_dirs` * #1874: py domain: Support union types using ``|`` in info-field-list +* #9268: py domain: :confval:`python_use_unqualified_type_names` supports type + field in info-field-list * #9097: Optimize the paralell build * #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using regular expressions diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 7fb56c6353a..7339097692c 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -299,6 +299,16 @@ def make_xref(self, rolename: str, domain: str, target: str, for node in result.traverse(nodes.Text): node.parent[node.parent.index(node)] = nodes.Text(text) break + elif isinstance(result, pending_xref) and env.config.python_use_unqualified_type_names: + children = result.children + result.clear() + + shortname = target.split('.')[-1] + textnode = innernode('', shortname) + contnodes = [pending_xref_condition('', '', textnode, condition='resolved'), + pending_xref_condition('', '', *children, condition='*')] + result.extend(contnodes) + return result def make_xrefs(self, rolename: str, domain: str, target: str, diff --git a/tests/roots/test-domain-py-python_use_unqualified_type_names/index.rst b/tests/roots/test-domain-py-python_use_unqualified_type_names/index.rst index 599206d8c7d..a6850a0f499 100644 --- a/tests/roots/test-domain-py-python_use_unqualified_type_names/index.rst +++ b/tests/roots/test-domain-py-python_use_unqualified_type_names/index.rst @@ -4,5 +4,9 @@ domain-py-smart_reference .. py:class:: Name :module: foo + :param name: blah blah + :type name: foo.Name + :param age: blah blah + :type age: foo.Age .. py:function:: hello(name: foo.Name, age: foo.Age) diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index e66f066d4d4..2ee2d5f2ddc 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -1147,6 +1147,9 @@ def test_python_python_use_unqualified_type_names(app, status, warning): assert ('' 'Name' in content) assert 'foo.Age' in content + assert ('

name (Name) – blah blah

' in content) + assert '

age (foo.Age) – blah blah

' in content @pytest.mark.sphinx('html', testroot='domain-py-python_use_unqualified_type_names', @@ -1157,6 +1160,9 @@ def test_python_python_use_unqualified_type_names_disabled(app, status, warning) assert ('' 'foo.Name' in content) assert 'foo.Age' in content + assert ('

name (foo.Name) – blah blah

' in content) + assert '

age (foo.Age) – blah blah

' in content @pytest.mark.sphinx('dummy', testroot='domain-py-xref-warning') From bc0e3b4405ebd8e16131766ad579e76a76370556 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 3 Jun 2021 21:52:00 +0900 Subject: [PATCH 027/160] linkcheck: Use urlparse to check and reconstruct URI for github.com MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- sphinx/builders/linkcheck.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 7e527b51f68..24c97af115c 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -656,15 +656,13 @@ def rewrite_github_anchor(app: Sphinx, uri: str) -> Optional[str]: The hyperlink anchors in github.com are dynamically generated. This rewrites them before checking and makes them comparable. """ - if re.search('://github.com/', uri) and '#' in uri: - baseuri, anchor = uri.split('#', 1) - if anchor.startswith('user-content-'): - # Ignored when URI is already prefixed. - return None - else: - return f'{baseuri}#user-content-{anchor}' - else: - return None + parsed = urlparse(uri) + if parsed.hostname == "github.com" and parsed.fragment: + prefixed = parsed.fragment.startswith('user-content-') + if not prefixed: + fragment = f'user-content-{parsed.fragment}' + return urlunparse(parsed._replace(fragment=fragment)) + return None def setup(app: Sphinx) -> Dict[str, Any]: From 4776cd329c5c799a7595c1b79e95d2a2fa12f07b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 3 Jun 2021 21:54:35 +0900 Subject: [PATCH 028/160] Fix ImportError --- sphinx/builders/linkcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 24c97af115c..a635e79a98e 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -21,7 +21,7 @@ from threading import Thread from typing import (Any, Dict, Generator, List, NamedTuple, Optional, Pattern, Set, Tuple, Union, cast) -from urllib.parse import unquote, urlparse +from urllib.parse import unquote, urlparse, urlunparse from docutils import nodes from docutils.nodes import Element From a02f6c5e0cb9d68ad3cd9ef66f16c025947f608e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 3 Jun 2021 21:58:36 +0900 Subject: [PATCH 029/160] Update CHANGES for PR #9260 --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index fdee645e1bc..32b600149cd 100644 --- a/CHANGES +++ b/CHANGES @@ -42,7 +42,7 @@ Features added text * #9176: i18n: Emit a debug message if message catalog file not found under :confval:`locale_dirs` -* #9016: linkcheck: failed to check the anchor of github.com +* #9016: linkcheck: Support checking anchors on github.com * #9016: linkcheck: Add a new event :event:`linkcheck-process-uri` to modify URIs before checking hyperlinks * #1874: py domain: Support union types using ``|`` in info-field-list From 4534d2d1a5755c8cbc9ef4327eab7e34a85a7de8 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 1 May 2021 13:46:51 +0200 Subject: [PATCH 030/160] fields, call roles instead of making a pending_xref Except for py which has mixins that assumes a single pending_xref --- sphinx/domains/python.py | 26 +++++++++---- sphinx/util/docfields.py | 79 ++++++++++++++++++++++++++++------------ 2 files changed, 73 insertions(+), 32 deletions(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 7339097692c..5c2acf18b0f 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -20,6 +20,7 @@ from docutils import nodes from docutils.nodes import Element, Node from docutils.parsers.rst import directives +from docutils.parsers.rst.states import Inliner from sphinx import addnodes from sphinx.addnodes import desc_signature, pending_xref, pending_xref_condition @@ -284,9 +285,13 @@ def _pseudo_parse_arglist(signode: desc_signature, arglist: str) -> None: class PyXrefMixin: def make_xref(self, rolename: str, domain: str, target: str, innernode: Type[TextlikeNode] = nodes.emphasis, - contnode: Node = None, env: BuildEnvironment = None) -> Node: + contnode: Node = None, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> Node: + # we use inliner=None to make sure we get the old behaviour with a single + # pending_xref node result = super().make_xref(rolename, domain, target, # type: ignore - innernode, contnode, env) + innernode, contnode, + env, inliner=None, location=None) result['refspecific'] = True result['py:module'] = env.ref_context.get('py:module') result['py:class'] = env.ref_context.get('py:class') @@ -313,7 +318,8 @@ def make_xref(self, rolename: str, domain: str, target: str, def make_xrefs(self, rolename: str, domain: str, target: str, innernode: Type[TextlikeNode] = nodes.emphasis, - contnode: Node = None, env: BuildEnvironment = None) -> List[Node]: + contnode: Node = None, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> List[Node]: delims = r'(\s*[\[\]\(\),](?:\s*or\s)?\s*|\s+or\s+|\s*\|\s*|\.\.\.)' delims_re = re.compile(delims) sub_targets = re.split(delims, target) @@ -329,7 +335,7 @@ def make_xrefs(self, rolename: str, domain: str, target: str, results.append(contnode or innernode(sub_target, sub_target)) else: results.append(self.make_xref(rolename, domain, sub_target, - innernode, contnode, env)) + innernode, contnode, env, inliner, location)) return results @@ -337,12 +343,14 @@ def make_xrefs(self, rolename: str, domain: str, target: str, class PyField(PyXrefMixin, Field): def make_xref(self, rolename: str, domain: str, target: str, innernode: Type[TextlikeNode] = nodes.emphasis, - contnode: Node = None, env: BuildEnvironment = None) -> Node: + contnode: Node = None, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> Node: if rolename == 'class' and target == 'None': # None is not a type, so use obj role instead. rolename = 'obj' - return super().make_xref(rolename, domain, target, innernode, contnode, env) + return super().make_xref(rolename, domain, target, innernode, contnode, + env, inliner, location) class PyGroupedField(PyXrefMixin, GroupedField): @@ -352,12 +360,14 @@ class PyGroupedField(PyXrefMixin, GroupedField): class PyTypedField(PyXrefMixin, TypedField): def make_xref(self, rolename: str, domain: str, target: str, innernode: Type[TextlikeNode] = nodes.emphasis, - contnode: Node = None, env: BuildEnvironment = None) -> Node: + contnode: Node = None, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> Node: if rolename == 'class' and target == 'None': # None is not a type, so use obj role instead. rolename = 'obj' - return super().make_xref(rolename, domain, target, innernode, contnode, env) + return super().make_xref(rolename, domain, target, innernode, contnode, + env, inliner, location) class PyObject(ObjectDescription[Tuple[str, str]]): diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 6d48e910c1b..39199b3b109 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -8,19 +8,22 @@ :copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ - from typing import TYPE_CHECKING, Any, Dict, List, Tuple, Type, Union, cast from docutils import nodes from docutils.nodes import Node +from docutils.parsers.rst.states import Inliner from sphinx import addnodes from sphinx.environment import BuildEnvironment +from sphinx.util import logging from sphinx.util.typing import TextlikeNode if TYPE_CHECKING: from sphinx.directive import ObjectDescription +logger = logging.getLogger(__name__) + def _is_single_paragraph(node: nodes.field_body) -> bool: """True if the node only contains one paragraph (and system messages).""" @@ -62,39 +65,62 @@ def __init__(self, name: str, names: Tuple[str, ...] = (), label: str = None, def make_xref(self, rolename: str, domain: str, target: str, innernode: Type[TextlikeNode] = addnodes.literal_emphasis, - contnode: Node = None, env: BuildEnvironment = None) -> Node: + contnode: Node = None, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> Node: + # note: for backwards compatibility env is last, but not optional + assert env is not None + assert (inliner is None) == (location is None), (inliner, location) if not rolename: return contnode or innernode(target, target) - refnode = addnodes.pending_xref('', refdomain=domain, refexplicit=False, - reftype=rolename, reftarget=target) - refnode += contnode or innernode(target, target) - if env: - env.get_domain(domain).process_field_xref(refnode) - return refnode + role = env.get_domain(domain).role(rolename) + if role is None or inliner is None: + if role is None and inliner is not None: + msg = "Problem in %s domain: field is supposed " + msg += "to use role '%s', but that role is not in the domain." + logger.warning(msg, domain, rolename, location=location) + if inliner is None: + # msg = "Field for %s domain using role '%s' does not run the role." + # msg += " No inliner provided." + # logger.warning(msg, domain, rolename) + pass + refnode = addnodes.pending_xref('', refdomain=domain, refexplicit=False, + reftype=rolename, reftarget=target) + refnode += contnode or innernode(target, target) + if env: + env.get_domain(domain).process_field_xref(refnode) + return refnode + lineno = logging.get_source_line(location)[1] + ns, messages = role(rolename, target, target, lineno, inliner, {}, []) + return nodes.inline(target, '', *ns) def make_xrefs(self, rolename: str, domain: str, target: str, innernode: Type[TextlikeNode] = addnodes.literal_emphasis, - contnode: Node = None, env: BuildEnvironment = None) -> List[Node]: - return [self.make_xref(rolename, domain, target, innernode, contnode, env)] + contnode: Node = None, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> List[Node]: + return [self.make_xref(rolename, domain, target, innernode, contnode, + env, inliner, location)] def make_entry(self, fieldarg: str, content: List[Node]) -> Tuple[str, List[Node]]: return (fieldarg, content) def make_field(self, types: Dict[str, List[Node]], domain: str, - item: Tuple, env: BuildEnvironment = None) -> nodes.field: + item: Tuple, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> nodes.field: fieldarg, content = item fieldname = nodes.field_name('', self.label) if fieldarg: fieldname += nodes.Text(' ') fieldname.extend(self.make_xrefs(self.rolename, domain, - fieldarg, nodes.Text, env=env)) + fieldarg, nodes.Text, + env=env, inliner=inliner, location=location)) if len(content) == 1 and ( isinstance(content[0], nodes.Text) or (isinstance(content[0], nodes.inline) and len(content[0]) == 1 and isinstance(content[0][0], nodes.Text))): content = self.make_xrefs(self.bodyrolename, domain, - content[0].astext(), contnode=content[0], env=env) + content[0].astext(), contnode=content[0], + env=env, inliner=inliner, location=location) fieldbody = nodes.field_body('', nodes.paragraph('', '', *content)) return nodes.field('', fieldname, fieldbody) @@ -121,13 +147,15 @@ def __init__(self, name: str, names: Tuple[str, ...] = (), label: str = None, self.can_collapse = can_collapse def make_field(self, types: Dict[str, List[Node]], domain: str, - items: Tuple, env: BuildEnvironment = None) -> nodes.field: + items: Tuple, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> nodes.field: fieldname = nodes.field_name('', self.label) listnode = self.list_type() for fieldarg, content in items: par = nodes.paragraph() par.extend(self.make_xrefs(self.rolename, domain, fieldarg, - addnodes.literal_strong, env=env)) + addnodes.literal_strong, + env=env, inliner=inliner, location=location)) par += nodes.Text(' -- ') par += content listnode += nodes.list_item('', par) @@ -170,7 +198,8 @@ def __init__(self, name: str, names: Tuple[str, ...] = (), typenames: Tuple[str, self.typerolename = typerolename def make_field(self, types: Dict[str, List[Node]], domain: str, - items: Tuple, env: BuildEnvironment = None) -> nodes.field: + items: Tuple, env: BuildEnvironment = None, + inliner: Inliner = None, location: Node = None) -> nodes.field: def handle_item(fieldarg: str, content: str) -> nodes.paragraph: par = nodes.paragraph() par.extend(self.make_xrefs(self.rolename, domain, fieldarg, @@ -184,7 +213,8 @@ def handle_item(fieldarg: str, content: str) -> nodes.paragraph: if len(fieldtype) == 1 and isinstance(fieldtype[0], nodes.Text): typename = fieldtype[0].astext() par.extend(self.make_xrefs(self.typerolename, domain, typename, - addnodes.literal_emphasis, env=env)) + addnodes.literal_emphasis, env=env, + inliner=inliner, location=location)) else: par += fieldtype par += nodes.Text(')') @@ -227,7 +257,7 @@ def transform(self, node: nodes.field_list) -> None: """Transform a single field list *node*.""" typemap = self.typemap - entries: List[Union[nodes.field, Tuple[Field, Any]]] = [] + entries: List[Union[nodes.field, Tuple[Field, Any, Node]]] = [] groupindices: Dict[str, int] = {} types: Dict[str, Dict] = {} @@ -317,16 +347,16 @@ def transform(self, node: nodes.field_list) -> None: # get one entry per field if typedesc.is_grouped: if typename in groupindices: - group = cast(Tuple[Field, List], entries[groupindices[typename]]) + group = cast(Tuple[Field, List, Node], entries[groupindices[typename]]) else: groupindices[typename] = len(entries) - group = (typedesc, []) + group = (typedesc, [], field) entries.append(group) new_entry = typedesc.make_entry(fieldarg, [translatable_content]) group[1].append(new_entry) else: new_entry = typedesc.make_entry(fieldarg, [translatable_content]) - entries.append((typedesc, new_entry)) + entries.append((typedesc, new_entry, field)) # step 2: all entries are collected, construct the new field list new_list = nodes.field_list() @@ -335,10 +365,11 @@ def transform(self, node: nodes.field_list) -> None: # pass-through old field new_list += entry else: - fieldtype, items = entry + fieldtype, items, location = entry fieldtypes = types.get(fieldtype.name, {}) env = self.directive.state.document.settings.env - new_list += fieldtype.make_field(fieldtypes, self.directive.domain, - items, env=env) + inliner = self.directive.state.inliner + new_list += fieldtype.make_field(fieldtypes, self.directive.domain, items, + env=env, inliner=inliner, location=location) node.replace_self(new_list) From c566823e1b0db0fc4f6933b423bc0aa1f02bd56a Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 1 May 2021 13:47:51 +0200 Subject: [PATCH 031/160] C, C++, use expr role in typed fields --- sphinx/domains/c.py | 2 +- sphinx/domains/cpp.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index ed908c875e5..abe746abc76 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -3115,7 +3115,7 @@ class CObject(ObjectDescription[ASTDeclaration]): doc_field_types = [ TypedField('parameter', label=_('Parameters'), names=('param', 'parameter', 'arg', 'argument'), - typerolename='type', typenames=('type',)), + typerolename='expr', typenames=('type',)), Field('returnvalue', label=_('Returns'), has_arg=False, names=('returns', 'return')), Field('returntype', label=_('Return type'), has_arg=False, diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 6c551b4a72b..14d8cde1b7d 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -6846,7 +6846,7 @@ class CPPObject(ObjectDescription[ASTDeclaration]): GroupedField('template parameter', label=_('Template Parameters'), names=('tparam', 'template parameter'), can_collapse=True), - GroupedField('exceptions', label=_('Throws'), rolename='cpp:class', + GroupedField('exceptions', label=_('Throws'), rolename='expr', names=('throws', 'throw', 'exception'), can_collapse=True), Field('returnvalue', label=_('Returns'), has_arg=False, From bd13c15dcaac7fb729f46baa4839af8d7bc404a9 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 1 May 2021 13:44:25 +0200 Subject: [PATCH 032/160] js, use func role for exception field The err role doesn't exist and the rest are all equivalent. --- sphinx/domains/javascript.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/domains/javascript.py b/sphinx/domains/javascript.py index 8511a1d6a0b..565d681dcf2 100644 --- a/sphinx/domains/javascript.py +++ b/sphinx/domains/javascript.py @@ -215,7 +215,7 @@ class JSCallable(JSObject): TypedField('arguments', label=_('Arguments'), names=('argument', 'arg', 'parameter', 'param'), typerolename='func', typenames=('paramtype', 'type')), - GroupedField('errors', label=_('Throws'), rolename='err', + GroupedField('errors', label=_('Throws'), rolename='func', names=('throws', ), can_collapse=True), Field('returnvalue', label=_('Returns'), has_arg=False, From ec9d578ed35fd158a17cadb4852b989198204f91 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 1 May 2021 13:58:01 +0200 Subject: [PATCH 033/160] Update CHANGES --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 035a4f2a496..81a3b4b1424 100644 --- a/CHANGES +++ b/CHANGES @@ -67,6 +67,8 @@ Bugs fixed * #9280: py domain: "exceptions" module is not displayed * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``) +* #8945: when transforming typed fields, call the specified role instead of + making an single xref. For C and C++, use the ``expr`` role for typed fields. Testing -------- From d5598b363e0fe5262893792ff4a865f59ba92962 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Sat, 29 May 2021 10:22:39 +0200 Subject: [PATCH 034/160] DocFields, small fixes --- sphinx/util/docfields.py | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 39199b3b109..49ee26789a4 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -16,6 +16,7 @@ from sphinx import addnodes from sphinx.environment import BuildEnvironment +from sphinx.locale import __ from sphinx.util import logging from sphinx.util.typing import TextlikeNode @@ -72,22 +73,18 @@ def make_xref(self, rolename: str, domain: str, target: str, assert (inliner is None) == (location is None), (inliner, location) if not rolename: return contnode or innernode(target, target) + # The domain is passed from DocFieldTransformer. So it surely exists. + # So we don't need to take care the env.get_domain() raises an exception. role = env.get_domain(domain).role(rolename) if role is None or inliner is None: if role is None and inliner is not None: msg = "Problem in %s domain: field is supposed " msg += "to use role '%s', but that role is not in the domain." - logger.warning(msg, domain, rolename, location=location) - if inliner is None: - # msg = "Field for %s domain using role '%s' does not run the role." - # msg += " No inliner provided." - # logger.warning(msg, domain, rolename) - pass + logger.warning(__(msg), domain, rolename, location=location) refnode = addnodes.pending_xref('', refdomain=domain, refexplicit=False, reftype=rolename, reftarget=target) refnode += contnode or innernode(target, target) - if env: - env.get_domain(domain).process_field_xref(refnode) + env.get_domain(domain).process_field_xref(refnode) return refnode lineno = logging.get_source_line(location)[1] ns, messages = role(rolename, target, target, lineno, inliner, {}, []) From 27d40519c140c36251b33aca9dc28891382a2d3b Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 3 Jun 2021 16:42:00 +0200 Subject: [PATCH 035/160] Field roles, add C test --- tests/roots/test-domain-c/field-role.rst | 4 ++++ tests/test_domain_c.py | 7 +++++++ 2 files changed, 11 insertions(+) create mode 100644 tests/roots/test-domain-c/field-role.rst diff --git a/tests/roots/test-domain-c/field-role.rst b/tests/roots/test-domain-c/field-role.rst new file mode 100644 index 00000000000..5452db5bee0 --- /dev/null +++ b/tests/roots/test-domain-c/field-role.rst @@ -0,0 +1,4 @@ +.. c:function:: void f(int a, int *b) + + :param int a: + :param int* b: diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index ef4858786de..9ae90050c7e 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -630,6 +630,13 @@ def test_build_ns_lookup(app, warning): assert len(ws) == 0 +@pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) +def test_build_field_role(app, status, warning): + app.builder.build_all() + ws = filter_warnings(warning, "field-role") + assert len(ws) == 0 + + def _get_obj(app, queryName): domain = app.env.get_domain('c') for name, dispname, objectType, docname, anchor, prio in domain.get_objects(): From 783314d54de929a6820674349048ff03307347e5 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 3 Jun 2021 16:45:13 +0200 Subject: [PATCH 036/160] Field roles, add C++ test --- tests/roots/test-domain-cpp/field-role.rst | 5 +++++ tests/test_domain_cpp.py | 7 +++++++ 2 files changed, 12 insertions(+) create mode 100644 tests/roots/test-domain-cpp/field-role.rst diff --git a/tests/roots/test-domain-cpp/field-role.rst b/tests/roots/test-domain-cpp/field-role.rst new file mode 100644 index 00000000000..1711a889cef --- /dev/null +++ b/tests/roots/test-domain-cpp/field-role.rst @@ -0,0 +1,5 @@ +.. cpp:function:: void f() + + :throws int: + :throws int*: + diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 52aaad8505f..8b157cc70ce 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -1237,6 +1237,13 @@ def __init__(self, role, root, contents): assert any_role.classes == texpr_role.content_classes['a'], expect +@pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) +def test_build_domain_cpp_field_role(app, status, warning): + app.builder.build_all() + ws = filter_warnings(warning, "field-role") + assert len(ws) == 0 + + def test_noindexentry(app): text = (".. cpp:function:: void f()\n" ".. cpp:function:: void g()\n" From ef68bd4220a0a12fcc4724b35bad3819db75ac5a Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 3 Jun 2021 19:35:14 +0200 Subject: [PATCH 037/160] Refactor C tests --- tests/test_domain_c.py | 122 ++++++++++++++++++++--------------------- 1 file changed, 61 insertions(+), 61 deletions(-) diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index 9ae90050c7e..d57738ec400 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -112,7 +112,7 @@ def check(name, input, idDict, output=None, key=None, asTextOutput=None): asTextOutput + ';' if asTextOutput is not None else None) -def test_expressions(): +def test_domain_c_ast_expressions(): def exprCheck(expr, output=None): class Config: c_id_attributes = ["id_attr"] @@ -269,7 +269,7 @@ class Config: exprCheck('a or_eq 5') -def test_type_definitions(): +def test_domain_c_ast_type_definitions(): check('type', "{key}T", {1: "T"}) check('type', "{key}bool *b", {1: 'b'}, key='typedef') @@ -290,7 +290,7 @@ def test_type_definitions(): {1: 'gpio_callback_t'}, key='typedef') -def test_macro_definitions(): +def test_domain_c_ast_macro_definitions(): check('macro', 'M', {1: 'M'}) check('macro', 'M()', {1: 'M'}) check('macro', 'M(arg)', {1: 'M'}) @@ -306,7 +306,7 @@ def test_macro_definitions(): check('macro', 'M(arg1, arg2..., arg3)', {1: 'M'}) -def test_member_definitions(): +def test_domain_c_ast_member_definitions(): check('member', 'void a', {1: 'a'}) check('member', '_Bool a', {1: 'a'}) check('member', 'bool a', {1: 'a'}) @@ -364,7 +364,7 @@ def test_member_definitions(): check('member', 'int b : 3', {1: 'b'}) -def test_function_definitions(): +def test_domain_c_ast_function_definitions(): check('function', 'void f()', {1: 'f'}) check('function', 'void f(int)', {1: 'f'}) check('function', 'void f(int i)', {1: 'f'}) @@ -424,29 +424,29 @@ def test_function_definitions(): check('function', 'void f(void (*p)(int, double), int i)', {1: 'f'}) -def test_nested_name(): +def test_domain_c_ast_nested_name(): check('struct', '{key}.A', {1: "A"}) check('struct', '{key}.A.B', {1: "A.B"}) check('function', 'void f(.A a)', {1: "f"}) check('function', 'void f(.A.B a)', {1: "f"}) -def test_struct_definitions(): +def test_domain_c_ast_struct_definitions(): check('struct', '{key}A', {1: 'A'}) -def test_union_definitions(): +def test_domain_c_ast_union_definitions(): check('union', '{key}A', {1: 'A'}) -def test_enum_definitions(): +def test_domain_c_ast_enum_definitions(): check('enum', '{key}A', {1: 'A'}) check('enumerator', '{key}A', {1: 'A'}) check('enumerator', '{key}A = 42', {1: 'A'}) -def test_anon_definitions(): +def test_domain_c_ast_anon_definitions(): check('struct', '@a', {1: "@a"}, asTextOutput='struct [anonymous]') check('union', '@a', {1: "@a"}, asTextOutput='union [anonymous]') check('enum', '@a', {1: "@a"}, asTextOutput='enum [anonymous]') @@ -454,7 +454,7 @@ def test_anon_definitions(): check('struct', '@a.A', {1: "@a.A"}, asTextOutput='struct [anonymous].A') -def test_initializers(): +def test_domain_c_ast_initializers(): idsMember = {1: 'v'} idsFunction = {1: 'f'} # no init @@ -473,7 +473,7 @@ def test_initializers(): # TODO: designator-list -def test_attributes(): +def test_domain_c_ast_attributes(): # style: C++ check('member', '[[]] int f', {1: 'f'}) check('member', '[ [ ] ] int f', {1: 'f'}, @@ -566,14 +566,14 @@ def extract_role_links(app, filename): @pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) -def test_build_domain_c(app, status, warning): +def test_domain_c_build(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "index") assert len(ws) == 0 @pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) -def test_build_domain_c_namespace(app, status, warning): +def test_domain_c_build_namespace(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "namespace") assert len(ws) == 0 @@ -583,7 +583,7 @@ def test_build_domain_c_namespace(app, status, warning): @pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) -def test_build_domain_c_anon_dup_decl(app, status, warning): +def test_domain_c_build_anon_dup_decl(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "anon-dup-decl") assert len(ws) == 2 @@ -592,7 +592,7 @@ def test_build_domain_c_anon_dup_decl(app, status, warning): @pytest.mark.sphinx(confoverrides={'nitpicky': True}) -def test_build_domain_c_semicolon(app, warning): +def test_domain_c_build_semicolon(app, warning): text = """ .. c:member:: int member; .. c:var:: int var; @@ -611,7 +611,7 @@ def test_build_domain_c_semicolon(app, warning): @pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) -def test_build_function_param_target(app, warning): +def test_domain_c_build_function_param_target(app, warning): # the anchor for function parameters should be the function app.builder.build_all() ws = filter_warnings(warning, "function_param_target") @@ -624,14 +624,14 @@ def test_build_function_param_target(app, warning): @pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) -def test_build_ns_lookup(app, warning): +def test_domain_c_build_ns_lookup(app, warning): app.builder.build_all() ws = filter_warnings(warning, "ns_lookup") assert len(ws) == 0 @pytest.mark.sphinx(testroot='domain-c', confoverrides={'nitpicky': True}) -def test_build_field_role(app, status, warning): +def test_domain_c_build_field_role(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "field-role") assert len(ws) == 0 @@ -645,49 +645,8 @@ def _get_obj(app, queryName): return (queryName, "not", "found") -def test_cfunction(app): - text = (".. c:function:: PyObject* " - "PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems)") - doctree = restructuredtext.parse(app, text) - assert_node(doctree[1], addnodes.desc, desctype="function", - domain="c", objtype="function", noindex=False) - - entry = _get_obj(app, 'PyType_GenericAlloc') - assert entry == ('index', 'c.PyType_GenericAlloc', 'function') - - -def test_cmember(app): - text = ".. c:member:: PyObject* PyTypeObject.tp_bases" - doctree = restructuredtext.parse(app, text) - assert_node(doctree[1], addnodes.desc, desctype="member", - domain="c", objtype="member", noindex=False) - - entry = _get_obj(app, 'PyTypeObject.tp_bases') - assert entry == ('index', 'c.PyTypeObject.tp_bases', 'member') - - -def test_cvar(app): - text = ".. c:var:: PyObject* PyClass_Type" - doctree = restructuredtext.parse(app, text) - assert_node(doctree[1], addnodes.desc, desctype="var", - domain="c", objtype="var", noindex=False) - - entry = _get_obj(app, 'PyClass_Type') - assert entry == ('index', 'c.PyClass_Type', 'member') - - -def test_noindexentry(app): - text = (".. c:function:: void f()\n" - ".. c:function:: void g()\n" - " :noindexentry:\n") - doctree = restructuredtext.parse(app, text) - assert_node(doctree, (addnodes.index, desc, addnodes.index, desc)) - assert_node(doctree[0], addnodes.index, entries=[('single', 'f (C function)', 'c.f', '', None)]) - assert_node(doctree[2], addnodes.index, entries=[]) - - @pytest.mark.sphinx(testroot='domain-c-intersphinx', confoverrides={'nitpicky': True}) -def test_intersphinx(tempdir, app, status, warning): +def test_domain_c_build_intersphinx(tempdir, app, status, warning): # a splitting of test_ids_vs_tags0 into the primary directives in a remote project, # and then the references in the test project origSource = """\ @@ -735,3 +694,44 @@ def test_intersphinx(tempdir, app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "index") assert len(ws) == 0 + + +def test_domain_c_parse_cfunction(app): + text = (".. c:function:: PyObject* " + "PyType_GenericAlloc(PyTypeObject *type, Py_ssize_t nitems)") + doctree = restructuredtext.parse(app, text) + assert_node(doctree[1], addnodes.desc, desctype="function", + domain="c", objtype="function", noindex=False) + + entry = _get_obj(app, 'PyType_GenericAlloc') + assert entry == ('index', 'c.PyType_GenericAlloc', 'function') + + +def test_domain_c_parse_cmember(app): + text = ".. c:member:: PyObject* PyTypeObject.tp_bases" + doctree = restructuredtext.parse(app, text) + assert_node(doctree[1], addnodes.desc, desctype="member", + domain="c", objtype="member", noindex=False) + + entry = _get_obj(app, 'PyTypeObject.tp_bases') + assert entry == ('index', 'c.PyTypeObject.tp_bases', 'member') + + +def test_domain_c_parse_cvar(app): + text = ".. c:var:: PyObject* PyClass_Type" + doctree = restructuredtext.parse(app, text) + assert_node(doctree[1], addnodes.desc, desctype="var", + domain="c", objtype="var", noindex=False) + + entry = _get_obj(app, 'PyClass_Type') + assert entry == ('index', 'c.PyClass_Type', 'member') + + +def test_domain_c_parse_noindexentry(app): + text = (".. c:function:: void f()\n" + ".. c:function:: void g()\n" + " :noindexentry:\n") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, desc, addnodes.index, desc)) + assert_node(doctree[0], addnodes.index, entries=[('single', 'f (C function)', 'c.f', '', None)]) + assert_node(doctree[2], addnodes.index, entries=[]) From 98f827ceee1d715cfd4aa848f1ec08bed1ed489c Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 3 Jun 2021 19:45:44 +0200 Subject: [PATCH 038/160] Refactor C++ tests --- tests/test_domain_cpp.py | 110 +++++++++++++++++++-------------------- 1 file changed, 55 insertions(+), 55 deletions(-) diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 8b157cc70ce..a34fec172de 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -117,7 +117,7 @@ def check(name, input, idDict, output=None, key=None, asTextOutput=None): asTextOutput + ';' if asTextOutput is not None else None) -def test_fundamental_types(): +def test_domain_cpp_ast_fundamental_types(): # see https://en.cppreference.com/w/cpp/language/types for t, id_v2 in cppDomain._id_fundamental_v2.items(): def makeIdV1(): @@ -137,7 +137,7 @@ def makeIdV2(): check("function", "void f(%s arg)" % t, {1: makeIdV1(), 2: makeIdV2()}) -def test_expressions(): +def test_domain_cpp_ast_expressions(): def exprCheck(expr, id, id4=None): ids = 'IE1CIA%s_1aE' # call .format() on the expr to unescape double curly braces @@ -351,7 +351,7 @@ class Config: exprCheck('a(b(c, 1 + d...)..., e(f..., g))', 'cl1aspcl1b1cspplL1E1dEcl1esp1f1gEE') -def test_type_definitions(): +def test_domain_cpp_ast_type_definitions(): check("type", "public bool b", {1: "b", 2: "1b"}, "{key}bool b", key='typedef') check("type", "{key}bool A::b", {1: "A::b", 2: "N1A1bE"}, key='typedef') check("type", "{key}bool *b", {1: "b", 2: "1b"}, key='typedef') @@ -396,7 +396,7 @@ def test_type_definitions(): check('type', '{key}T = Q', {2: '1T'}, key='using') -def test_concept_definitions(): +def test_domain_cpp_ast_concept_definitions(): check('concept', 'template {key}A::B::Concept', {2: 'I0EN1A1B7ConceptE'}) check('concept', 'template {key}Foo', @@ -407,7 +407,7 @@ def test_concept_definitions(): parse('concept', 'template template {key}Foo') -def test_member_definitions(): +def test_domain_cpp_ast_member_definitions(): check('member', ' const std::string & name = 42', {1: "name__ssCR", 2: "4name"}, output='const std::string &name = 42') check('member', ' const std::string & name', {1: "name__ssCR", 2: "4name"}, @@ -436,7 +436,7 @@ def test_member_definitions(): check('member', 'int b : 1 || new int{0}', {1: 'b__i', 2: '1b'}) -def test_function_definitions(): +def test_domain_cpp_ast_function_definitions(): check('function', 'void f(volatile int)', {1: "f__iV", 2: "1fVi"}) check('function', 'void f(std::size_t)', {1: "f__std::s", 2: "1fNSt6size_tE"}) check('function', 'operator bool() const', {1: "castto-b-operatorC", 2: "NKcvbEv"}) @@ -624,7 +624,7 @@ def test_function_definitions(): check('function', 'void f(void (*p)(int, double), int i)', {2: '1fPFvidEi'}) -def test_operators(): +def test_domain_cpp_ast_operators(): check('function', 'void operator new()', {1: "new-operator", 2: "nwv"}) check('function', 'void operator new[]()', {1: "new-array-operator", 2: "nav"}) check('function', 'void operator delete()', {1: "delete-operator", 2: "dlv"}) @@ -684,14 +684,14 @@ def test_operators(): check('function', 'void operator[]()', {1: "subscript-operator", 2: "ixv"}) -def test_nested_name(): +def test_domain_cpp_ast_nested_name(): check('class', '{key}::A', {1: "A", 2: "1A"}) check('class', '{key}::A::B', {1: "A::B", 2: "N1A1BE"}) check('function', 'void f(::A a)', {1: "f__A", 2: "1f1A"}) check('function', 'void f(::A::B a)', {1: "f__A::B", 2: "1fN1A1BE"}) -def test_class_definitions(): +def test_domain_cpp_ast_class_definitions(): check('class', 'public A', {1: "A", 2: "1A"}, output='{key}A') check('class', 'private {key}A', {1: "A", 2: "1A"}) check('class', '{key}A final', {1: 'A', 2: '1A'}) @@ -722,11 +722,11 @@ def test_class_definitions(): {2: 'I_DpiE1TIJX(Is)EEE', 3: 'I_DpiE1TIJX2IsEEE'}) -def test_union_definitions(): +def test_domain_cpp_ast_union_definitions(): check('union', '{key}A', {2: "1A"}) -def test_enum_definitions(): +def test_domain_cpp_ast_enum_definitions(): check('enum', '{key}A', {2: "1A"}) check('enum', '{key}A : std::underlying_type::type', {2: "1A"}) check('enum', '{key}A : unsigned int', {2: "1A"}) @@ -737,7 +737,7 @@ def test_enum_definitions(): check('enumerator', '{key}A = std::numeric_limits::max()', {2: "1A"}) -def test_anon_definitions(): +def test_domain_cpp_ast_anon_definitions(): check('class', '@a', {3: "Ut1_a"}, asTextOutput='class [anonymous]') check('union', '@a', {3: "Ut1_a"}, asTextOutput='union [anonymous]') check('enum', '@a', {3: "Ut1_a"}, asTextOutput='enum [anonymous]') @@ -748,7 +748,7 @@ def test_anon_definitions(): asTextOutput='int f(int [anonymous])') -def test_templates(): +def test_domain_cpp_ast_templates(): check('class', "A", {2: "IE1AI1TE"}, output="template<> {key}A") # first just check which objects support templating check('class', "template<> {key}A", {2: "IE1A"}) @@ -854,7 +854,7 @@ def test_templates(): check('type', 'template {key}A', {2: 'I_1CE1A'}, key='using') -def test_requires_clauses(): +def test_domain_cpp_ast_requires_clauses(): check('function', 'template requires A auto f() -> void requires B', {4: 'I0EIQaa1A1BE1fvv'}) check('function', 'template requires A || B or C void f()', @@ -863,7 +863,7 @@ def test_requires_clauses(): {4: 'I0EIQooaa1A1Baa1C1DE1fvv'}) -def test_template_args(): +def test_domain_cpp_ast_template_args(): # from breathe#218 check('function', "template " @@ -878,7 +878,7 @@ def test_template_args(): key='using') -def test_initializers(): +def test_domain_cpp_ast_initializers(): idsMember = {1: 'v__T', 2: '1v'} idsFunction = {1: 'f__T', 2: '1f1T'} idsTemplate = {2: 'I_1TE1fv', 4: 'I_1TE1fvv'} @@ -912,7 +912,7 @@ def test_initializers(): check('member', 'T v = T{}', idsMember) -def test_attributes(): +def test_domain_cpp_ast_attributes(): # style: C++ check('member', '[[]] int f', {1: 'f__i', 2: '1f'}) check('member', '[ [ ] ] int f', {1: 'f__i', 2: '1f'}, @@ -960,7 +960,7 @@ def test_attributes(): check('function', 'void f() [[attr1]] [[attr2]]', {1: 'f', 2: '1fv'}) -def test_xref_parsing(): +def test_domain_cpp_ast_xref_parsing(): def check(target): class Config: cpp_id_attributes = ["id_attr"] @@ -993,7 +993,7 @@ def filter_warnings(warning, file): @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) -def test_build_domain_cpp_multi_decl_lookup(app, status, warning): +def test_domain_cpp_build_multi_decl_lookup(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "lookup-key-overload") assert len(ws) == 0 @@ -1003,7 +1003,7 @@ def test_build_domain_cpp_multi_decl_lookup(app, status, warning): @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) -def test_build_domain_cpp_warn_template_param_qualified_name(app, status, warning): +def test_domain_cpp_build_warn_template_param_qualified_name(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "warn-template-param-qualified-name") assert len(ws) == 2 @@ -1012,14 +1012,14 @@ def test_build_domain_cpp_warn_template_param_qualified_name(app, status, warnin @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) -def test_build_domain_cpp_backslash_ok_true(app, status, warning): +def test_domain_cpp_build_backslash_ok_true(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "backslash") assert len(ws) == 0 @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) -def test_build_domain_cpp_semicolon(app, status, warning): +def test_domain_cpp_build_semicolon(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "semicolon") assert len(ws) == 0 @@ -1027,7 +1027,7 @@ def test_build_domain_cpp_semicolon(app, status, warning): @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True, 'strip_signature_backslash': True}) -def test_build_domain_cpp_backslash_ok_false(app, status, warning): +def test_domain_cpp_build_backslash_ok_false(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "backslash") assert len(ws) == 1 @@ -1035,7 +1035,7 @@ def test_build_domain_cpp_backslash_ok_false(app, status, warning): @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) -def test_build_domain_cpp_anon_dup_decl(app, status, warning): +def test_domain_cpp_build_anon_dup_decl(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "anon-dup-decl") assert len(ws) == 2 @@ -1044,7 +1044,7 @@ def test_build_domain_cpp_anon_dup_decl(app, status, warning): @pytest.mark.sphinx(testroot='domain-cpp') -def test_build_domain_cpp_misuse_of_roles(app, status, warning): +def test_domain_cpp_build_misuse_of_roles(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "roles-targets-ok") assert len(ws) == 0 @@ -1092,7 +1092,7 @@ def test_build_domain_cpp_misuse_of_roles(app, status, warning): @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'add_function_parentheses': True}) -def test_build_domain_cpp_with_add_function_parentheses_is_True(app, status, warning): +def test_domain_cpp_build_with_add_function_parentheses_is_True(app, status, warning): app.builder.build_all() def check(spec, text, file): @@ -1133,7 +1133,7 @@ def check(spec, text, file): @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'add_function_parentheses': False}) -def test_build_domain_cpp_with_add_function_parentheses_is_False(app, status, warning): +def test_domain_cpp_build_with_add_function_parentheses_is_False(app, status, warning): app.builder.build_all() def check(spec, text, file): @@ -1174,7 +1174,7 @@ def check(spec, text, file): @pytest.mark.sphinx(testroot='domain-cpp') -def test_xref_consistency(app, status, warning): +def test_domain_cpp_build_xref_consistency(app, status, warning): app.builder.build_all() test = 'xref_consistency.html' @@ -1238,39 +1238,14 @@ def __init__(self, role, root, contents): @pytest.mark.sphinx(testroot='domain-cpp', confoverrides={'nitpicky': True}) -def test_build_domain_cpp_field_role(app, status, warning): +def test_domain_cpp_build_field_role(app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "field-role") assert len(ws) == 0 -def test_noindexentry(app): - text = (".. cpp:function:: void f()\n" - ".. cpp:function:: void g()\n" - " :noindexentry:\n") - doctree = restructuredtext.parse(app, text) - assert_node(doctree, (addnodes.index, desc, addnodes.index, desc)) - assert_node(doctree[0], addnodes.index, entries=[('single', 'f (C++ function)', '_CPPv41fv', '', None)]) - assert_node(doctree[2], addnodes.index, entries=[]) - - -def test_mix_decl_duplicate(app, warning): - # Issue 8270 - text = (".. cpp:struct:: A\n" - ".. cpp:function:: void A()\n" - ".. cpp:struct:: A\n") - restructuredtext.parse(app, text) - ws = warning.getvalue().split("\n") - assert len(ws) == 5 - assert "index.rst:2: WARNING: Duplicate C++ declaration, also defined at index:1." in ws[0] - assert "Declaration is '.. cpp:function:: void A()'." in ws[1] - assert "index.rst:3: WARNING: Duplicate C++ declaration, also defined at index:1." in ws[2] - assert "Declaration is '.. cpp:struct:: A'." in ws[3] - assert ws[4] == "" - - @pytest.mark.sphinx(testroot='domain-cpp-intersphinx', confoverrides={'nitpicky': True}) -def test_intersphinx(tempdir, app, status, warning): +def test_domain_cpp_build_intersphinx(tempdir, app, status, warning): origSource = """\ .. cpp:class:: _class .. cpp:struct:: _struct @@ -1330,3 +1305,28 @@ def test_intersphinx(tempdir, app, status, warning): app.builder.build_all() ws = filter_warnings(warning, "index") assert len(ws) == 0 + + +def test_domain_cpp_parse_noindexentry(app): + text = (".. cpp:function:: void f()\n" + ".. cpp:function:: void g()\n" + " :noindexentry:\n") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, desc, addnodes.index, desc)) + assert_node(doctree[0], addnodes.index, entries=[('single', 'f (C++ function)', '_CPPv41fv', '', None)]) + assert_node(doctree[2], addnodes.index, entries=[]) + + +def test_domain_cpp_parse_mix_decl_duplicate(app, warning): + # Issue 8270 + text = (".. cpp:struct:: A\n" + ".. cpp:function:: void A()\n" + ".. cpp:struct:: A\n") + restructuredtext.parse(app, text) + ws = warning.getvalue().split("\n") + assert len(ws) == 5 + assert "index.rst:2: WARNING: Duplicate C++ declaration, also defined at index:1." in ws[0] + assert "Declaration is '.. cpp:function:: void A()'." in ws[1] + assert "index.rst:3: WARNING: Duplicate C++ declaration, also defined at index:1." in ws[2] + assert "Declaration is '.. cpp:struct:: A'." in ws[3] + assert ws[4] == "" From 654f11e90c266980ac178589f9c1c80a8e9ed466 Mon Sep 17 00:00:00 2001 From: James McKinney <26463+jpmckinney@users.noreply.github.com> Date: Sat, 5 Jun 2021 12:38:00 -0400 Subject: [PATCH 039/160] fix: Fix typo in add_directive docstring --- sphinx/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/application.py b/sphinx/application.py index a722edc72cd..df2b8586802 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -655,7 +655,7 @@ def run(self): ... def setup(app): - add_directive('my-directive', MyDirective) + app.add_directive('my-directive', MyDirective) For more details, see `the Docutils docs `__ . From 636bd40a6f588cb1134e33a97456837a83f5033d Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 6 Jun 2021 00:17:02 +0000 Subject: [PATCH 040/160] Update message catalogs --- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74898 -> 74898 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js | 63 + sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 0 -> 501 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 3613 ++++++++++++++++++ sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61290 -> 61290 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82763 -> 82763 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69558 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/sphinx.pot | 100 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 100 +- sphinx/locale/tr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 100 +- 37 files changed, 4527 insertions(+), 851 deletions(-) create mode 100644 sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js create mode 100644 sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo create mode 100644 sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 997bdfb808c5ff214fed3ae88dbf4faa48c8eead..1e0fa84fba7db4912040432fd24c9ae2510beb13 100644 GIT binary patch delta 21 ccmey${FQk^8<&}`ftiAVft8`z#tEs608pI\n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 46a600ce73fa6fe188771b897b30d62b5471091f..3992632c36813520d6ce215f84dfd016ab96b061 100644 GIT binary patch delta 23 ecmbQMGgoKBLS8O2T>~=(0|P5Vv(2k{i#PyRTL#Ji delta 23 ecmbQMGgoKBLS8OYU1I|U0|P4~qs^;%i#PyR8V17v diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 1c940d99455..1275c649f09 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paràmetres" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipus de retorn" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funció" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "class" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" @@ -1978,7 +1978,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "mòdul" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "paraula clau" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objecte" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "excepció" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "sentència" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "funció interna" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (obsolet)" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 60f92395aedfcdf9bba95daf05b38940354ffa59..5efe2477e1302d36e56ca501234c2528a3eb45f7 100644 GIT binary patch delta 22 dcmdm)u`^?Xz5\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -1843,17 +1843,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnerer" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Returtype" @@ -1871,7 +1871,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktion" @@ -1949,7 +1949,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klasse" @@ -1966,7 +1966,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" @@ -1981,7 +1981,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" @@ -1995,20 +1995,20 @@ msgstr "Parametre" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2027,121 +2027,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "nøgleord" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "undtagelse" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "erklæring" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "indbygget funktion" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variable" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (forældet)" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2897,7 +2897,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 61f2a61df3e8f6acd65cc6197950a4b14c787d3f..8ee19dc2fd119ed6d3d775dc2198c7a188c82d05 100644 GIT binary patch delta 23 fcmZ1)xioUaVks^&T>~=(0|P5Vv(0Ozeh2~pVqyp3 delta 23 fcmZ1)xioUaVks_DU1I|U0|P4~qs?ojeh2~pVj&0G diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 4cc3a4e8a21..9ccace1f213 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -1843,17 +1843,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Rückgabe" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Rückgabetyp" @@ -1871,7 +1871,7 @@ msgid "variable" msgstr "Variable" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "Funktion" @@ -1949,7 +1949,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "Klasse" @@ -1966,7 +1966,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" @@ -1981,7 +1981,7 @@ msgstr "%s() (Klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" @@ -1995,20 +1995,20 @@ msgstr "Parameter" msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "Attribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "Modul" @@ -2027,121 +2027,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "Schlüsselwort" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "Operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "Objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "Exception" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "Anweisung" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "Builtin-Funktion" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variablen" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (veraltet)" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2897,7 +2897,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 6044fc31e9bf6f47333b964fd20ecb1c69fe6461..3300b8d1984ff0b81237d3f92e68de7e3a800fd3 100644 GIT binary patch delta 23 ecmexw^50}bpa7Sdu7R0?fq|8w+2&{g6)pf`MFzM4 delta 23 ecmexw^50}bpa7StuCalFfq|8g(dK9Y6)pf`1O~AH diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 756779e5cdd..463630ae232 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroak" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Itzultzen du" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Itzulketa mota" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "aldagaia" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funtzioa" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klasea" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" @@ -1979,7 +1979,7 @@ msgstr "%s() (klasea)" msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" @@ -1993,20 +1993,20 @@ msgstr "Argumentuak" msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atributua" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modulua" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "gako-hitza" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "eragiketa" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objetua" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "salbuespena" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "sententzia" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Aldagaiak" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (zaharkitua)" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index d73e483840329e6c0f062bd8535f5ba32bee5470..ccf5903fb568392959ee1223255651bbd6e94c56 100644 GIT binary patch delta 23 ecmaDL_CRdIDK;)MT>~=(0|P5Vv&~o7dRPErZ3lh; delta 23 ecmaDL_CRdIDK;)sU1I|U0|P4~qs>>?dRPErEC+W0 diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index acddf2fe05c..ec79d6c0bcb 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "moduuli" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (poistettu)" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 024d108baa69e9a79e4e384a5c7bdad7c7f55783..8e3f55295fb3ff549e0da76d8db6a1c5da1dbcc7 100644 GIT binary patch delta 25 hcmbPql4a6KmJRo3aGB{Em?;<-SQ(maemP@hHvokh3PJz? delta 25 hcmbPql4a6KmJRo3aGB~F8z>kUSQ!~@emP@hHvoj#3OfJ* diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index a1a9974fcd9..a04911a1d93 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-29 11:52+0000\n" "Last-Translator: Nicolas Friedli \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -1864,17 +1864,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramètres" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Renvoie" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Type renvoyé" @@ -1892,7 +1892,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "fonction" @@ -1970,7 +1970,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" @@ -1987,7 +1987,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" @@ -2002,7 +2002,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" @@ -2016,20 +2016,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "module" @@ -2048,121 +2048,121 @@ msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s" msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format invalide : %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "mot-clé" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "opérateur" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objet" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "exception" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "état" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "fonction de base" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (propriété %s)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "propriété" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "description dupliquée pour l'objet %s; l'autre instance se trouve dans %s, utilisez :noindex: sur l'une d'elles" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, 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.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (obsolète)" @@ -2882,7 +2882,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2918,7 +2918,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2939,43 +2939,43 @@ msgstr "" 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:273 +#: sphinx/ext/autosummary/__init__.py:278 #, 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:275 +#: sphinx/ext/autosummary/__init__.py:280 #, 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:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "échec de l’analyse du nom %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "échec d’importation de l'object %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate : fichier nontrouvé : %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js new file mode 100644 index 00000000000..a63791ce1db --- /dev/null +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.js @@ -0,0 +1,63 @@ +Documentation.addTranslations({ + "locale": "fr_FR", + "messages": { + "%(filename)s — %(docstitle)s": "", + "© Copyright %(copyright)s.": "", + "© Copyright %(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 Sphinx %(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": "", + "Permalink to this definition": "", + "Permalink to this headline": "", + "Please activate JavaScript to enable the search\n functionality.": "", + "Preparing search...": "", + "Previous topic": "", + "Quick search": "", + "Search": "", + "Search Page": "", + "Search Results": "", + "Search finished, found %s page(s) matching the search query.": "", + "Search within %(docstitle)s": "", + "Searching": "", + "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/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo new file mode 100644 index 0000000000000000000000000000000000000000..7424c16279ed8bf050c53fe9e456ddda2ab659a6 GIT binary patch literal 501 zcmY*W%}&EG3WMOogDKvVHieQLU|h`$x%Ng> zDQz(|c`?PyWo~eyIK*jpkX&?oy-_?Kd&AoaUTG56WnxcQ;t;VYM0V^BFvi2<1Ln*T zaYWBWt?? z{^%#h35kVE)FiVxH2SVsMonnUt*v+vtX3=E)&j+h)_$fIf!WN9Qa48\n" +"Language-Team: French (France) (http://www.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.9.1\n" +"Language: fr_FR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#: sphinx/application.py:157 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:161 +#, python-format +msgid "Output directory (%s) is not a directory" +msgstr "" + +#: sphinx/application.py:165 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:196 +#, python-format +msgid "Running Sphinx v%s" +msgstr "" + +#: sphinx/application.py:200 +msgid "" +"For security reason, parallel mode is disabled on macOS and python3.8 and " +"above. For more details, please read https://github.com/sphinx-" +"doc/sphinx/issues/6803" +msgstr "" + +#: sphinx/application.py:228 +#, python-format +msgid "" +"This project needs at least Sphinx v%s and therefore cannot be built with " +"this version." +msgstr "" + +#: sphinx/application.py:243 +msgid "making output directory" +msgstr "" + +#: sphinx/application.py:248 sphinx/registry.py:423 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:254 +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:279 +#, python-format +msgid "loading translations [%s]... " +msgstr "" + +#: sphinx/application.py:296 sphinx/util/__init__.py:522 +msgid "done" +msgstr "" + +#: sphinx/application.py:298 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:307 +msgid "loading pickled environment" +msgstr "" + +#: sphinx/application.py:312 +#, python-format +msgid "failed: %s" +msgstr "" + +#: sphinx/application.py:320 +msgid "No builder selected, using default: html" +msgstr "" + +#: sphinx/application.py:348 +msgid "succeeded" +msgstr "" + +#: sphinx/application.py:349 +msgid "finished with problems" +msgstr "" + +#: sphinx/application.py:353 +#, python-format +msgid "build %s, %s warning (with warnings treated as errors)." +msgstr "" + +#: sphinx/application.py:355 +#, python-format +msgid "build %s, %s warnings (with warnings treated as errors)." +msgstr "" + +#: sphinx/application.py:358 +#, python-format +msgid "build %s, %s warning." +msgstr "" + +#: sphinx/application.py:360 +#, python-format +msgid "build %s, %s warnings." +msgstr "" + +#: sphinx/application.py:364 +#, python-format +msgid "build %s." +msgstr "" + +#: sphinx/application.py:594 +#, python-format +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" + +#: sphinx/application.py:672 +#, python-format +msgid "directive %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:693 sphinx/application.py:714 +#, python-format +msgid "role %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:1225 +#, 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 "" + +#: sphinx/application.py:1229 +#, python-format +msgid "the %s extension is not safe for parallel reading" +msgstr "" + +#: sphinx/application.py:1232 +#, 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 "" + +#: sphinx/application.py:1236 +#, python-format +msgid "the %s extension is not safe for parallel writing" +msgstr "" + +#: sphinx/application.py:1244 sphinx/application.py:1248 +#, python-format +msgid "doing serial %s" +msgstr "" + +#: sphinx/config.py:170 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/config.py:197 +#, python-format +msgid "" +"cannot override dictionary config setting %r, ignoring (use %r to set " +"individual elements)" +msgstr "" + +#: sphinx/config.py:206 +#, python-format +msgid "invalid number %r for config value %r, ignoring" +msgstr "" + +#: sphinx/config.py:211 +#, python-format +msgid "cannot override config setting %r with unsupported type, ignoring" +msgstr "" + +#: sphinx/config.py:239 +#, python-format +msgid "unknown config value %r in override, ignoring" +msgstr "" + +#: sphinx/config.py:256 +#, python-format +msgid "No such config value: %s" +msgstr "" + +#: sphinx/config.py:280 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:329 +#, python-format +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "" + +#: sphinx/config.py:332 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:339 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:365 +#, python-format +msgid "" +"The config value `source_suffix' expects a string, list of strings, or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:384 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:385 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:386 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:387 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:424 +msgid "" +"The config value `{name}` has to be a one of {candidates}, but `{current}` " +"is given." +msgstr "" + +#: sphinx/config.py:442 +msgid "" +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." +msgstr "" + +#: sphinx/config.py:455 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:465 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:477 +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:67 +#, python-format +msgid "Event %r already present" +msgstr "" + +#: sphinx/events.py:73 +#, python-format +msgid "Unknown event name: %s" +msgstr "" + +#: sphinx/events.py:109 +#, python-format +msgid "Handler %r for event %r threw an exception" +msgstr "" + +#: sphinx/extension.py:50 +#, python-format +msgid "" +"The %s extension is required by needs_extensions settings, but it is not " +"loaded." +msgstr "" + +#: sphinx/extension.py:55 +#, 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 "" + +#: sphinx/highlighting.py:135 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:161 +#, python-format +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." +msgstr "" + +#: sphinx/project.py:53 +#, python-format +msgid "" +"multiple files found for the document \"%s\": %r\n" +"Use %r for the build." +msgstr "" + +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "" + +#: sphinx/registry.py:132 +#, python-format +msgid "Builder class %s has no \"name\" attribute" +msgstr "" + +#: sphinx/registry.py:134 +#, python-format +msgid "Builder %r already exists (in module %s)" +msgstr "" + +#: sphinx/registry.py:147 +#, python-format +msgid "Builder name %s not registered or available through entry point" +msgstr "" + +#: sphinx/registry.py:154 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:161 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:184 sphinx/registry.py:197 sphinx/registry.py:208 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:188 +#, python-format +msgid "The %r directive is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:200 +#, python-format +msgid "The %r role is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:211 +#, python-format +msgid "The %r index is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:235 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:255 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:262 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:272 +#, python-format +msgid "source_parser for %r is already registered" +msgstr "" + +#: sphinx/registry.py:281 +#, python-format +msgid "Source parser for %s not registered" +msgstr "" + +#: sphinx/registry.py:310 +#, python-format +msgid "Translator for %r already exists" +msgstr "" + +#: sphinx/registry.py:323 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:395 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:404 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:417 +#, python-format +msgid "" +"the extension %r was already merged with Sphinx since version %s; this " +"extension is ignored." +msgstr "" + +#: sphinx/registry.py:428 +msgid "Original exception:\n" +msgstr "" + +#: sphinx/registry.py:429 +#, python-format +msgid "Could not import extension %s" +msgstr "" + +#: sphinx/registry.py:434 +#, python-format +msgid "" +"extension %r has no setup() function; is it really a Sphinx extension " +"module?" +msgstr "" + +#: sphinx/registry.py:443 +#, 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 "" + +#: sphinx/registry.py:451 +#, python-format +msgid "" +"extension %r returned an unsupported object from its setup() function; it " +"should return None or a metadata dictionary" +msgstr "" + +#: sphinx/roles.py:177 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "" + +#: sphinx/theming.py:77 +#, python-format +msgid "theme %r doesn't have \"theme\" setting" +msgstr "" + +#: sphinx/theming.py:79 +#, python-format +msgid "theme %r doesn't have \"inherit\" setting" +msgstr "" + +#: sphinx/theming.py:85 +#, python-format +msgid "no theme named %r found, inherited by %r" +msgstr "" + +#: sphinx/theming.py:108 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" + +#: sphinx/theming.py:127 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + +#: sphinx/theming.py:225 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "" + +#: sphinx/theming.py:240 +msgid "" +"sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" +msgstr "" + +#: sphinx/theming.py:245 +#, python-format +msgid "no theme named %r found (missing theme.conf?)" +msgstr "" + +#: sphinx/builders/__init__.py:192 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:196 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:216 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:217 sphinx/builders/__init__.py:535 +#: sphinx/builders/__init__.py:561 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:225 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:243 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:250 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:257 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:269 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:273 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:284 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:294 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:303 sphinx/builders/gettext.py:240 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/__init__.py:310 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:315 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:317 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:322 +msgid "pickling environment" +msgstr "" + +#: sphinx/builders/__init__.py:328 +msgid "checking consistency" +msgstr "" + +#: sphinx/builders/__init__.py:332 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:371 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:392 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:430 sphinx/builders/__init__.py:457 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:571 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:513 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:522 sphinx/builders/singlehtml.py:153 +msgid "preparing documents" +msgstr "" + +#: sphinx/builders/_epub_base.py:216 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:412 +#, python-format +msgid "cannot read image file %r: copying it instead" +msgstr "" + +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:435 +#, python-format +msgid "cannot write image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:445 +msgid "Pillow not found - copying image files" +msgstr "" + +#: sphinx/builders/_epub_base.py:471 +msgid "writing mimetype file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:476 +msgid "writing META-INF/container.xml file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:504 +msgid "writing content.opf file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:530 +#, python-format +msgid "unknown mimetype for %s, ignoring" +msgstr "" + +#: sphinx/builders/_epub_base.py:677 +msgid "writing toc.ncx file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:702 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/changes.py:34 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:60 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:62 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:78 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:80 +msgid "Module level" +msgstr "" + +#: sphinx/builders/changes.py:124 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:131 +#, python-format +msgid "could not read %r for changelog creation" +msgstr "" + +#: sphinx/builders/dummy.py:22 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:67 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:165 +msgid "writing nav.xhtml file..." +msgstr "" + +#: sphinx/builders/epub3.py:191 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:195 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:198 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:202 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:205 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:208 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:211 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:214 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:218 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:221 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:219 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:241 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:245 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:273 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/linkcheck.py:119 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:257 +#, python-format +msgid "broken link: %s (%s)" +msgstr "" + +#: sphinx/builders/linkcheck.py:450 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/manpage.py:38 +#, python-format +msgid "The manual pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/manpage.py:45 +msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:299 sphinx/builders/manpage.py:56 +#: sphinx/builders/singlehtml.py:161 sphinx/builders/texinfo.py:109 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:67 +#, python-format +msgid "\"man_pages\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/singlehtml.py:34 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "" + +#: sphinx/builders/singlehtml.py:156 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:174 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:45 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:47 +msgid "" +"\n" +"Run 'make' in that directory to run these through makeinfo\n" +"(use 'make info' here to do that automatically)." +msgstr "" + +#: sphinx/builders/texinfo.py:75 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:83 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:281 sphinx/builders/texinfo.py:105 +#, python-format +msgid "processing %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:352 sphinx/builders/texinfo.py:152 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:362 sphinx/builders/texinfo.py:161 +msgid " (in " +msgstr "" + +#: sphinx/builders/texinfo.py:191 +msgid "copying Texinfo support files" +msgstr "" + +#: sphinx/builders/texinfo.py:195 +#, python-format +msgid "error writing file Makefile: %s" +msgstr "" + +#: sphinx/builders/text.py:30 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/xml.py:91 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/xml.py:35 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:103 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html/__init__.py:144 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:176 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html/__init__.py:372 +#, python-format +msgid "Failed to read build info file: %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/writers/texinfo.py:233 +#, python-format +msgid "%b %d, %Y" +msgstr "" + +#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "" + +#: sphinx/builders/html/__init__.py:478 +msgid "index" +msgstr "" + +#: sphinx/builders/html/__init__.py:540 +msgid "next" +msgstr "" + +#: sphinx/builders/html/__init__.py:549 +msgid "previous" +msgstr "" + +#: sphinx/builders/html/__init__.py:643 +msgid "generating indices" +msgstr "" + +#: sphinx/builders/html/__init__.py:658 +msgid "writing additional pages" +msgstr "" + +#: sphinx/builders/html/__init__.py:737 +msgid "copying downloadable files... " +msgstr "" + +#: sphinx/builders/html/__init__.py:745 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#, python-format +msgid "Failed to copy a file in html_static_file: %s: %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:810 +msgid "copying static files" +msgstr "" + +#: sphinx/builders/html/__init__.py:826 +#, python-format +msgid "cannot copy static file %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:831 +msgid "copying extra files" +msgstr "" + +#: sphinx/builders/html/__init__.py:837 +#, python-format +msgid "cannot copy extra file %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:844 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:892 +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:953 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:1046 +#, 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:1051 +#, python-format +msgid "" +"An error happened in rendering the page %s.\n" +"Reason: %r" +msgstr "" + +#: sphinx/builders/html/__init__.py:1080 +msgid "dumping object inventory" +msgstr "" + +#: sphinx/builders/html/__init__.py:1085 +#, python-format +msgid "dumping search index in %s" +msgstr "" + +#: sphinx/builders/html/__init__.py:1127 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html/__init__.py:1214 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html/__init__.py:1217 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html/__init__.py:1225 +#, python-format +msgid "html_extra_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html/__init__.py:1229 +#, python-format +msgid "html_extra_path entry %r is placed inside outdir" +msgstr "" + +#: sphinx/builders/html/__init__.py:1238 +#, python-format +msgid "html_static_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html/__init__.py:1242 +#, python-format +msgid "html_static_path entry %r is placed inside outdir" +msgstr "" + +#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#, python-format +msgid "logo file %r does not exist" +msgstr "" + +#: sphinx/builders/html/__init__.py:1260 +#, python-format +msgid "favicon file %r does not exist" +msgstr "" + +#: sphinx/builders/html/__init__.py:1280 +msgid "" +"html_add_permalinks has been deprecated since v3.5.0. Please use " +"html_permalinks and html_permalinks_icon instead." +msgstr "" + +#: sphinx/builders/html/__init__.py:1306 +#, python-format +msgid "%s %s documentation" +msgstr "" + +#: sphinx/builders/latex/__init__.py:114 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:116 +msgid "" +"\n" +"Run 'make' in that directory to run these through (pdf)latex\n" +"(use `make latexpdf' here to do that automatically)." +msgstr "" + +#: sphinx/builders/latex/__init__.py:152 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:160 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:194 sphinx/domains/std.py:604 +#: sphinx/templates/latex/latex.tex_t:97 +#: 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:147 +#: sphinx/writers/texinfo.py:498 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:197 sphinx/templates/latex/latex.tex_t:82 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:211 sphinx/writers/latex.py:382 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:379 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:399 +msgid "copying TeX support files..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:412 +msgid "copying additional files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:468 +#, python-format +msgid "Unknown configure key: latex_elements[%r], ignored." +msgstr "" + +#: sphinx/builders/latex/__init__.py:476 +#, python-format +msgid "Unknown theme option: latex_theme_options[%r], ignored." +msgstr "" + +#: sphinx/builders/latex/theming.py:91 +#, python-format +msgid "%r doesn't have \"theme\" setting" +msgstr "" + +#: sphinx/builders/latex/theming.py:94 +#, python-format +msgid "%r doesn't have \"%s\" setting" +msgstr "" + +#: sphinx/cmd/build.py:38 +msgid "Exception occurred while building, starting debugger:" +msgstr "" + +#: sphinx/cmd/build.py:48 +msgid "Interrupted!" +msgstr "" + +#: sphinx/cmd/build.py:50 +msgid "reST markup error:" +msgstr "" + +#: sphinx/cmd/build.py:56 +msgid "Encoding error:" +msgstr "" + +#: sphinx/cmd/build.py:59 sphinx/cmd/build.py:74 +#, python-format +msgid "" +"The full traceback has been saved in %s, if you want to report the issue to " +"the developers." +msgstr "" + +#: sphinx/cmd/build.py:63 +msgid "Recursion error:" +msgstr "" + +#: sphinx/cmd/build.py:66 +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:71 +msgid "Exception occurred:" +msgstr "" + +#: sphinx/cmd/build.py:77 +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:80 +msgid "" +"A bug report can be filed in the tracker at . Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:96 +msgid "job number should be a positive number" +msgstr "" + +#: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:464 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +msgid "For more information, visit ." +msgstr "" + +#: sphinx/cmd/build.py:105 +msgid "" +"\n" +"Generate documentation from source files.\n" +"\n" +"sphinx-build generates documentation from the files in SOURCEDIR and places it\n" +"in OUTPUTDIR. It looks for 'conf.py' in SOURCEDIR for the configuration\n" +"settings. The 'sphinx-quickstart' tool may be used to generate template files,\n" +"including 'conf.py'\n" +"\n" +"sphinx-build can create documentation in different formats. A format is\n" +"selected by specifying the builder name on the command line; it defaults to\n" +"HTML. Builders can also perform other tasks related to documentation\n" +"processing.\n" +"\n" +"By default, everything that is outdated is built. Output only for selected\n" +"files can be built by specifying individual filenames.\n" +msgstr "" + +#: sphinx/cmd/build.py:126 +msgid "path to documentation source files" +msgstr "" + +#: sphinx/cmd/build.py:128 +msgid "path to output directory" +msgstr "" + +#: sphinx/cmd/build.py:130 +msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgstr "" + +#: sphinx/cmd/build.py:133 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:136 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:138 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:141 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:144 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:147 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:151 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:154 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:157 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:160 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:163 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:165 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:168 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:170 +msgid "increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/cmd/build.py:172 sphinx/ext/apidoc.py:330 +msgid "no output on stdout, just warnings on stderr" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "no output at all, not even warnings" +msgstr "" + +#: sphinx/cmd/build.py:177 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:180 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:183 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: sphinx/cmd/build.py:185 +msgid "turn warnings into errors" +msgstr "" + +#: sphinx/cmd/build.py:187 +msgid "with -W, keep going when getting warnings" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "show full traceback on exception" +msgstr "" + +#: sphinx/cmd/build.py:191 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:223 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:226 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:245 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:255 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:262 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:43 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:44 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:45 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: sphinx/cmd/quickstart.py:46 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "" + +#: sphinx/cmd/quickstart.py:47 +msgid "checks for documentation coverage" +msgstr "" + +#: sphinx/cmd/quickstart.py:48 +msgid "include math, rendered as PNG or SVG images" +msgstr "" + +#: sphinx/cmd/quickstart.py:49 +msgid "include math, rendered in the browser by MathJax" +msgstr "" + +#: sphinx/cmd/quickstart.py:50 +msgid "conditional inclusion of content based on config values" +msgstr "" + +#: sphinx/cmd/quickstart.py:51 +msgid "include links to the source code of documented Python objects" +msgstr "" + +#: sphinx/cmd/quickstart.py:52 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:94 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:104 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:111 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:118 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:124 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:205 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:207 +msgid "" +"Please enter values for the following settings (just press Enter to\n" +"accept a default value, if one is given in brackets)." +msgstr "" + +#: sphinx/cmd/quickstart.py:212 +#, python-format +msgid "Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:215 +msgid "Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:216 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:221 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:223 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:225 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:232 +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/cmd/quickstart.py:235 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:239 +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 "" + +#: sphinx/cmd/quickstart.py:242 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:246 +msgid "" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:247 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:249 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:253 +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 "" + +#: sphinx/cmd/quickstart.py:258 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:260 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:264 +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" +"translate text that it generates into that language.\n" +"\n" +"For a list of supported codes, see\n" +"https://www.sphinx-doc.org/en/master/usage/configuration.html#confval-language." +msgstr "" + +#: sphinx/cmd/quickstart.py:270 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:276 +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 "" + +#: sphinx/cmd/quickstart.py:278 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:282 +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 "" + +#: sphinx/cmd/quickstart.py:286 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:291 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:295 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:299 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:313 +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 "" + +#: sphinx/cmd/quickstart.py:316 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:319 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:362 sphinx/ext/apidoc.py:90 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:367 sphinx/ext/apidoc.py:87 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:409 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:411 +#, python-format +msgid "" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:414 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder" +msgstr "" + +#: sphinx/cmd/quickstart.py:417 +#, python-format +msgid "" +"Use the sphinx-build command to build the docs, like so:\n" +" sphinx-build -b builder %s %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:419 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck." +msgstr "" + +#: sphinx/cmd/quickstart.py:454 +msgid "" +"\n" +"Generate required files for a Sphinx project.\n" +"\n" +"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 "" + +#: sphinx/cmd/quickstart.py:469 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:474 +msgid "project root" +msgstr "" + +#: sphinx/cmd/quickstart.py:476 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:478 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:480 +msgid "if specified, create build dir under source dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:482 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:484 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:486 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:488 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:490 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:492 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:494 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:496 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:498 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:500 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:502 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:506 sphinx/ext/apidoc.py:390 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:508 sphinx/ext/apidoc.py:386 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:510 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:512 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:514 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:516 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:519 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:522 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:525 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:527 sphinx/ext/apidoc.py:392 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:530 sphinx/ext/apidoc.py:395 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:533 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:566 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:580 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:582 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:597 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:64 +msgid "non-whitespace stripped by dedent" +msgstr "" + +#: sphinx/directives/code.py:83 +#, python-format +msgid "Invalid caption: %s" +msgstr "" + +#: sphinx/directives/code.py:129 sphinx/directives/code.py:274 +#: sphinx/directives/code.py:440 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:208 +#, python-format +msgid "Cannot use both \"%s\" and \"%s\" options" +msgstr "" + +#: sphinx/directives/code.py:220 +#, python-format +msgid "Include file %r not found or reading it failed" +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 "" + +#: sphinx/directives/code.py:258 +#, python-format +msgid "Object named %r not found in include file %r" +msgstr "" + +#: sphinx/directives/code.py:283 +msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" +msgstr "" + +#: sphinx/directives/code.py:288 +#, python-format +msgid "Line spec %r: no lines pulled from include file %r" +msgstr "" + +#: sphinx/directives/other.py:175 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:177 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:179 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:181 +msgid "Author: " +msgstr "" + +#: sphinx/directives/patches.py:108 +msgid "" +"\":file:\" option for csv-table directive now recognizes an absolute path as" +" a relative path from source directory. Please update your document." +msgstr "" + +#: sphinx/domains/__init__.py:394 +#, python-format +msgid "%s %s" +msgstr "" + +#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#, python-format +msgid "" +"Duplicate C declaration, also defined at %s:%s.\n" +"Declaration is '.. c:%s:: %s'." +msgstr "" + +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 +msgid "Parameters" +msgstr "" + +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/python.py:403 +msgid "Return type" +msgstr "" + +#: sphinx/domains/c.py:3207 +#, python-format +msgid "%s (C %s)" +msgstr "" + +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +msgid "member" +msgstr "" + +#: sphinx/domains/c.py:3715 +msgid "variable" +msgstr "" + +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 +msgid "function" +msgstr "" + +#: sphinx/domains/c.py:3717 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:3718 +msgid "struct" +msgstr "" + +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +msgid "union" +msgstr "" + +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +msgid "enum" +msgstr "" + +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +msgid "function parameter" +msgstr "" + +#: sphinx/domains/changeset.py:28 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:29 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:30 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/citation.py:75 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/citation.py:86 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#, python-format +msgid "" +"Duplicate C++ declaration, also defined at %s:%s.\n" +"Declaration is '.. cpp:%s:: %s'." +msgstr "" + +#: sphinx/domains/cpp.py:6846 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:6968 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/python.py:1109 +msgid "class" +msgstr "" + +#: sphinx/domains/cpp.py:7492 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp.py:7497 +msgid "template parameter" +msgstr "" + +#: sphinx/domains/javascript.py:136 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:139 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:141 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:215 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:286 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 +msgid "method" +msgstr "" + +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 +msgid "module" +msgstr "" + +#: sphinx/domains/javascript.py:362 +#, python-format +msgid "duplicate %s description of %s, other %s in %s" +msgstr "" + +#: sphinx/domains/math.py:65 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2070 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/python.py:59 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:60 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:61 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:63 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:64 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:394 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:398 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:674 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:698 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:699 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:758 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:760 +#, python-format +msgid "%s() (%s property)" +msgstr "" + +#: sphinx/domains/python.py:762 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:882 +#, python-format +msgid "%s (%s property)" +msgstr "" + +#: sphinx/domains/python.py:1036 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:1037 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:1086 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:1112 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:1113 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:1115 +msgid "property" +msgstr "" + +#: sphinx/domains/python.py:1173 +#, python-format +msgid "" +"duplicate object description of %s, other instance in %s, use :noindex: for " +"one of them" +msgstr "" + +#: sphinx/domains/python.py:1293 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:1347 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:104 sphinx/domains/rst.py:165 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:166 sphinx/domains/rst.py:170 +#, python-format +msgid ":%s: (directive option)" +msgstr "" + +#: sphinx/domains/rst.py:199 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:208 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:209 +msgid "directive-option" +msgstr "" + +#: sphinx/domains/rst.py:210 +msgid "role" +msgstr "" + +#: sphinx/domains/rst.py:232 +#, python-format +msgid "duplicate description of %s %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:101 sphinx/domains/std.py:118 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:192 +#, python-format +msgid "" +"Malformed option description %r, should look like \"opt\", \"-opt args\", \"" +"--opt args\", \"/opt args\" or \"+opt args\"" +msgstr "" + +#: sphinx/domains/std.py:243 +#, python-format +msgid "%s command line option" +msgstr "" + +#: sphinx/domains/std.py:245 +msgid "command line option" +msgstr "" + +#: sphinx/domains/std.py:371 +msgid "glossary term must be preceded by empty line" +msgstr "" + +#: sphinx/domains/std.py:379 +msgid "glossary terms must not be separated by empty lines" +msgstr "" + +#: sphinx/domains/std.py:385 sphinx/domains/std.py:398 +msgid "glossary seems to be misformatted, check indentation" +msgstr "" + +#: sphinx/domains/std.py:563 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:564 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:565 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:567 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:568 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:569 +msgid "document" +msgstr "" + +#: sphinx/domains/std.py:605 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:606 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "" + +#: sphinx/domains/std.py:655 sphinx/domains/std.py:764 +#: sphinx/ext/autosectionlabel.py:51 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:674 +#, python-format +msgid "duplicate %s description of %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:870 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:878 +#, python-format +msgid "Failed to create a cross reference. Any number is not assigned: %s" +msgstr "" + +#: sphinx/domains/std.py:890 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:904 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:907 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/domains/std.py:1120 +#, python-format +msgid "undefined label: %s" +msgstr "" + +#: sphinx/domains/std.py:1122 +#, python-format +msgid "Failed to create a cross reference. A title or caption not found: %s" +msgstr "" + +#: sphinx/environment/__init__.py:73 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:74 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:75 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:202 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:204 +msgid "source directory has changed" +msgstr "" + +#: sphinx/environment/__init__.py:283 +msgid "" +"This environment is incompatible with the selected builder, please choose " +"another doctree directory." +msgstr "" + +#: sphinx/environment/__init__.py:382 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:509 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:590 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:632 +msgid "document isn't included in any toctree" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:78 +#, python-format +msgid "see %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:82 +#, python-format +msgid "see also %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:85 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:174 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 +msgid "Symbols" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:151 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:170 +#, python-format +msgid "" +"toctree contains reference to document %r that doesn't have a title: no link" +" will be generated" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:176 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:90 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:109 +#, python-format +msgid "image file %s not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:135 +#, python-format +msgid "download file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/toctree.py:185 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:83 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:308 +msgid "" +"\n" +"Look recursively in for Python modules and packages and create\n" +"one reST file with automodule directives per package in the .\n" +"\n" +"The s can be file and/or directory patterns that will be\n" +"excluded from generation.\n" +"\n" +"Note: By default this script will not overwrite already created files." +msgstr "" + +#: sphinx/ext/apidoc.py:321 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:323 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:328 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:333 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:336 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:342 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:345 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:348 +msgid "include \"_private\" modules" +msgstr "" + +#: sphinx/ext/apidoc.py:350 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:352 +msgid "don't create a table of contents file" +msgstr "" + +#: sphinx/ext/apidoc.py:355 +msgid "" +"don't create headings for the module/package packages (e.g. when the " +"docstrings already contain them)" +msgstr "" + +#: sphinx/ext/apidoc.py:360 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:364 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:368 +msgid "file suffix (default: rst)" +msgstr "" + +#: sphinx/ext/apidoc.py:370 +msgid "generate a full project with sphinx-quickstart" +msgstr "" + +#: sphinx/ext/apidoc.py:373 +msgid "append module_path to sys.path, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:375 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:377 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:379 +msgid "project version, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:381 +msgid "project release, used when --full is given, defaults to --doc-version" +msgstr "" + +#: sphinx/ext/apidoc.py:384 +msgid "extension options" +msgstr "" + +#: sphinx/ext/apidoc.py:417 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:43 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:52 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:66 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:127 +#, python-format +msgid "undocumented c api: %s [%s] in file %s" +msgstr "" + +#: sphinx/ext/coverage.py:159 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/coverage.py:255 +#, python-format +msgid "undocumented python function: %s :: %s" +msgstr "" + +#: sphinx/ext/coverage.py:271 +#, python-format +msgid "undocumented python class: %s :: %s" +msgstr "" + +#: sphinx/ext/coverage.py:284 +#, python-format +msgid "undocumented python method: %s :: %s :: %s" +msgstr "" + +#: sphinx/ext/doctest.py:123 +#, python-format +msgid "missing '+' or '-' in '%s' option." +msgstr "" + +#: sphinx/ext/doctest.py:128 +#, python-format +msgid "'%s' is not a valid option." +msgstr "" + +#: sphinx/ext/doctest.py:142 +#, python-format +msgid "'%s' is not a valid pyversion option" +msgstr "" + +#: sphinx/ext/doctest.py:225 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:283 +#, python-format +msgid "" +"Testing of doctests in the sources finished, look at the results in " +"%(outdir)s/output.txt." +msgstr "" + +#: sphinx/ext/doctest.py:433 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:519 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/duration.py:79 +msgid "" +"====================== slowest reading durations =======================" +msgstr "" + +#: sphinx/ext/graphviz.py:132 +msgid "Graphviz directive cannot have both content and a filename argument" +msgstr "" + +#: sphinx/ext/graphviz.py:142 +#, python-format +msgid "External Graphviz file %r not found or reading it failed" +msgstr "" + +#: sphinx/ext/graphviz.py:149 +msgid "Ignoring \"graphviz\" directive without content." +msgstr "" + +#: sphinx/ext/graphviz.py:257 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:261 +#, python-format +msgid "" +"dot command %r cannot be run (needed for graphviz output), check the " +"graphviz_dot setting" +msgstr "" + +#: sphinx/ext/graphviz.py:268 +#, python-format +msgid "" +"dot exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:278 +#, python-format +msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" +msgstr "" + +#: sphinx/ext/graphviz.py:282 sphinx/ext/graphviz.py:334 +#: sphinx/ext/graphviz.py:371 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:392 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:394 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/imgconverter.py:41 +#, python-format +msgid "" +"convert command %r cannot be run, check the image_converter setting: %s" +msgstr "" + +#: sphinx/ext/imgconverter.py:46 sphinx/ext/imgconverter.py:70 +#, python-format +msgid "" +"convert exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/imgconverter.py:65 +#, python-format +msgid "convert command %r cannot be run, check the image_converter setting" +msgstr "" + +#: sphinx/ext/imgmath.py:141 +#, python-format +msgid "" +"LaTeX command %r cannot be run (needed for math display), check the " +"imgmath_latex setting" +msgstr "" + +#: sphinx/ext/imgmath.py:155 +#, python-format +msgid "" +"%s command %r cannot be run (needed for math display), check the imgmath_%s " +"setting" +msgstr "" + +#: sphinx/ext/imgmath.py:300 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:326 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:333 sphinx/ext/mathjax.py:52 +msgid "Permalink to this equation" +msgstr "" + +#: sphinx/ext/intersphinx.py:173 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:204 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:218 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:224 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:315 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:317 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:350 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:363 +#, python-format +msgid "Failed to read intersphinx_mapping[%s], ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:70 sphinx/ext/viewcode.py:188 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:68 +msgid "Todo" +msgstr "" + +#: sphinx/ext/todo.py:101 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:159 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:161 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:171 +msgid "original entry" +msgstr "" + +#: sphinx/ext/viewcode.py:257 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:289 +msgid "[docs]" +msgstr "" + +#: sphinx/ext/viewcode.py:303 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:309 +#, python-format +msgid "

Source code for %s

" +msgstr "" + +#: sphinx/ext/viewcode.py:336 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:337 +msgid "

All modules for which code is available

" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:132 +#, python-format +msgid "invalid value for member-order option: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:140 +#, python-format +msgid "invalid value for class-doc-from option: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:398 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:515 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:660 sphinx/ext/autodoc/__init__.py:1673 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:810 +#, python-format +msgid "" +"autodoc: failed to determine %r to be documented, the following exception was raised:\n" +"%s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:903 +#, 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 "" + +#: sphinx/ext/autodoc/__init__.py:961 +#, python-format +msgid "error while formatting signature for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1011 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1018 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1031 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1097 +#, python-format +msgid "" +"missing attribute mentioned in :members: option: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 +#: sphinx/ext/autodoc/__init__.py:2683 +#, python-format +msgid "Failed to get a function signature for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1559 +#, python-format +msgid "Failed to get a constructor signature for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1660 +#, python-format +msgid "Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1746 sphinx/ext/autodoc/__init__.py:1819 +#: sphinx/ext/autodoc/__init__.py:1838 +#, python-format +msgid "alias of %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1880 +#, python-format +msgid "alias of TypeVar(%s)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:2111 sphinx/ext/autodoc/__init__.py:2205 +#, python-format +msgid "Failed to get a method signature for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:2333 +#, python-format +msgid "Invalid __slots__ found on %s. Ignored." +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:2726 +msgid "" +"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." +" Please update your setting." +msgstr "" + +#: sphinx/ext/autodoc/preserve_defaults.py:78 +#, python-format +msgid "Failed to parse a default argument value for %r: %s" +msgstr "" + +#: sphinx/ext/autodoc/type_comment.py:130 +#, python-format +msgid "Failed to update signature for %r: parameter not found: %s" +msgstr "" + +#: sphinx/ext/autodoc/type_comment.py:133 +#, python-format +msgid "Failed to parse type_comment for %r: %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:278 +#, python-format +msgid "autosummary references excluded document %r. Ignored." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:280 +#, python-format +msgid "" +"autosummary: stub file not found %r. Check your autosummary_generate " +"setting." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:299 +msgid "A captioned autosummary requires :toctree: option. ignored." +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:346 +#, python-format +msgid "autosummary: failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:360 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:365 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:755 +#, python-format +msgid "autosummary_generate: file not found: %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:763 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:188 +#: sphinx/ext/autosummary/generate.py:237 +#, python-format +msgid "" +"autosummary: failed to determine %r to be documented, the following exception was raised:\n" +"%s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:384 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:388 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:425 +#, python-format +msgid "[autosummary] failed to import %r: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:599 +msgid "" +"\n" +"Generate ReStructuredText using autosummary directives.\n" +"\n" +"sphinx-autogen is a frontend to sphinx.ext.autosummary.generate. It generates\n" +"the reStructuredText files from the autosummary directives contained in the\n" +"given input files.\n" +"\n" +"The 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" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:616 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:620 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:623 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:627 +#, python-format +msgid "custom template directory (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:631 +#, python-format +msgid "document imported members (default: %(default)s)" +msgstr "" + +#: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 +msgid "Keyword Arguments" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:657 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:658 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:718 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:727 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:763 +msgid "Receives" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:767 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:801 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:805 +msgid "Yields" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:973 +#, python-format +msgid "invalid value set (missing closing brace): %s" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:980 +#, python-format +msgid "invalid value set (missing opening brace): %s" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:987 +#, python-format +msgid "malformed string literal (missing closing quote): %s" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:994 +#, python-format +msgid "malformed string literal (missing opening quote): %s" +msgstr "" + +#: sphinx/locale/__init__.py:252 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:253 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:254 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:255 +msgid "Error" +msgstr "" + +#: sphinx/locale/__init__.py:256 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:257 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:258 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:259 +msgid "See also" +msgstr "" + +#: sphinx/locale/__init__.py:260 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:261 +msgid "Warning" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 +msgid "continued from previous page" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:29 +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "" + +#: sphinx/templates/latex/sphinxmessages.sty_t:10 +msgid "Non-alphabetical" +msgstr "" + +#: sphinx/templates/latex/sphinxmessages.sty_t:12 +msgid "Numbers" +msgstr "" + +#: sphinx/templates/latex/sphinxmessages.sty_t:13 +msgid "page" +msgstr "" + +#: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 +msgid "Table of Contents" +msgstr "" + +#: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 +msgid "Search" +msgstr "" + +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/searchbox.html:16 +msgid "Go" +msgstr "" + +#: sphinx/themes/agogo/layout.html:90 sphinx/themes/basic/sourcelink.html:15 +msgid "Show Source" +msgstr "" + +#: sphinx/themes/basic/defindex.html:11 +msgid "Overview" +msgstr "" + +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + +#: sphinx/themes/basic/defindex.html:20 +msgid "Indices and tables:" +msgstr "" + +#: sphinx/themes/basic/defindex.html:23 +msgid "Complete Table of Contents" +msgstr "" + +#: sphinx/themes/basic/defindex.html:24 +msgid "lists all sections and subsections" +msgstr "" + +#: sphinx/themes/basic/defindex.html:26 +msgid "search this documentation" +msgstr "" + +#: sphinx/themes/basic/defindex.html:28 +msgid "Global Module Index" +msgstr "" + +#: sphinx/themes/basic/defindex.html:29 +msgid "quick access to all modules" +msgstr "" + +#: sphinx/themes/basic/defindex.html:31 +msgid "all functions, classes, terms" +msgstr "" + +#: sphinx/themes/basic/genindex-single.html:33 +#, python-format +msgid "Index – %(key)s" +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 "" + +#: sphinx/themes/basic/genindex-split.html:16 +msgid "Index pages by letter" +msgstr "" + +#: sphinx/themes/basic/genindex-split.html:25 +msgid "can be huge" +msgstr "" + +#: sphinx/themes/basic/layout.html:29 +msgid "Navigation" +msgstr "" + +#: sphinx/themes/basic/layout.html:135 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/layout.html:144 +msgid "About these documents" +msgstr "" + +#: sphinx/themes/basic/layout.html:153 +msgid "Copyright" +msgstr "" + +#: sphinx/themes/basic/layout.html:199 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:201 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:205 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:208 +#, python-format +msgid "" +"Created using Sphinx " +"%(sphinx_version)s." +msgstr "" + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/relations.html:11 +msgid "Previous topic" +msgstr "" + +#: sphinx/themes/basic/relations.html:13 +msgid "previous chapter" +msgstr "" + +#: sphinx/themes/basic/relations.html:16 +msgid "Next topic" +msgstr "" + +#: sphinx/themes/basic/relations.html:18 +msgid "next chapter" +msgstr "" + +#: sphinx/themes/basic/search.html:27 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "" + +#: sphinx/themes/basic/search.html:34 +msgid "" +"Searching for multiple words only shows matches that contain\n" +" all words." +msgstr "" + +#: sphinx/themes/basic/search.html:41 +msgid "search" +msgstr "" + +#: sphinx/themes/basic/search.html:47 +#: sphinx/themes/basic/static/searchtools.js:297 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:49 +#: sphinx/themes/basic/static/searchtools.js:299 +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 "" + +#: sphinx/themes/basic/sourcelink.html:12 +msgid "This Page" +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 "" + +#: sphinx/themes/basic/changes/rstsource.html:5 +#, python-format +msgid "%(filename)s — %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:17 +#, python-format +msgid "Automatically generated list of changes in version %(version)s" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:18 +msgid "Library changes" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:23 +msgid "C API changes" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:25 +msgid "Other changes" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:434 +#: sphinx/writers/html.py:439 sphinx/writers/html5.py:385 +#: sphinx/writers/html5.py:390 +msgid "Permalink to this headline" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:131 +#: sphinx/writers/html.py:140 sphinx/writers/html5.py:102 +#: sphinx/writers/html5.py:111 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:238 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:136 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:141 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:301 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:355 +msgid ", in " +msgstr "" + +#: sphinx/themes/classic/static/sidebar.js_t:83 +msgid "Expand sidebar" +msgstr "" + +#: sphinx/themes/classic/static/sidebar.js_t:96 +#: sphinx/themes/classic/static/sidebar.js_t:124 +msgid "Collapse sidebar" +msgstr "" + +#: sphinx/themes/haiku/layout.html:24 +msgid "Contents" +msgstr "" + +#: sphinx/transforms/__init__.py:224 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:263 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:269 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:304 sphinx/transforms/i18n.py:375 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:347 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:394 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:414 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:117 +msgid "" +"Could not determine the fallback text for the cross-reference. Might be a " +"bug." +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:157 +#, python-format +msgid "more than one target found for 'any' cross-reference %r: could be %s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:205 +#, python-format +msgid "%s:%s reference target not found: %s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:208 +#, python-format +msgid "%r reference target not found: %s" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:83 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:111 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:129 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/__init__.py:284 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:515 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:520 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:213 +#, python-format +msgid "unknown directive or role name: %s:%s" +msgstr "" + +#: sphinx/util/i18n.py:67 +#, python-format +msgid "reading error: %s, %s" +msgstr "" + +#: sphinx/util/i18n.py:74 +#, python-format +msgid "writing error: %s, %s" +msgstr "" + +#: sphinx/util/i18n.py:98 +#, python-format +msgid "locale_dir %s does not exists" +msgstr "" + +#: sphinx/util/i18n.py:192 +#, python-format +msgid "" +"Invalid date format. Quote the string by single quote if you want to output " +"it directly: %s" +msgstr "" + +#: sphinx/util/nodes.py:424 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:608 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/rst.py:77 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:327 sphinx/writers/html5.py:298 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:337 sphinx/writers/html5.py:308 +#, python-format +msgid "Any IDs not assigned for %s node" +msgstr "" + +#: sphinx/writers/html.py:411 sphinx/writers/html5.py:362 +msgid "Permalink to this term" +msgstr "" + +#: sphinx/writers/html.py:443 sphinx/writers/html5.py:394 +msgid "Permalink to this table" +msgstr "" + +#: sphinx/writers/html.py:486 sphinx/writers/html5.py:437 +msgid "Permalink to this code" +msgstr "" + +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:439 +msgid "Permalink to this image" +msgstr "" + +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:441 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:621 sphinx/writers/html5.py:561 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:347 +#, python-format +msgid "unknown %r toplevel_sectioning for class %r" +msgstr "" + +#: sphinx/writers/latex.py:398 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:645 +msgid "document title is not a single Text node" +msgstr "" + +#: sphinx/writers/latex.py:677 sphinx/writers/texinfo.py:622 +msgid "" +"encountered title node not in section, topic, table, admonition or sidebar" +msgstr "" + +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/texinfo.py:637 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:908 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1239 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1552 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +msgid "[image]" +msgstr "" + +#: sphinx/writers/texinfo.py:1181 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1265 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1269 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 8d373af8594472fad8cba3eec12b638ac811d7b2..89cdfd96842ba255557a2c5d935e6f833a52c673 100644 GIT binary patch delta 25 gcmaELkNMR-<_$9KTxPlkW(o!dR)%Jq)!JP$0ENT|>Hq)$ delta 25 gcmaELkNMR-<_$9KT&B9l1_}lSRz^mf)!JP$0EL4H;{X5v diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 1214badf227..c1bae2c0b3f 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -1844,17 +1844,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Kembali" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Return type" @@ -1872,7 +1872,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "fungsi" @@ -1950,7 +1950,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "class" @@ -1967,7 +1967,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" @@ -1982,7 +1982,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1996,20 +1996,20 @@ msgstr "Argumen" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2028,121 +2028,121 @@ msgstr "duplikasi label persamaan %s, misalnya di %s" msgid "Invalid math_eqref_format: %r" msgstr "Math_eqref_format tidak valid: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "keyword" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "object" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "eksepsi" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "statement" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "fungsi built-in" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variabel" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, 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.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (obsolet)" @@ -2862,7 +2862,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2898,7 +2898,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2919,43 +2919,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "gagal mengurai nama %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "gagal mengimpor objek %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 4c136546b7605a70d5494ad6f80d90c8b46a4665..fd9a945c4253a58063d7b310506a530ac53aac35 100644 GIT binary patch delta 25 hcmX@z#(KJqb;FbuTxPlkW(o!dR)%Jq=dD;f3jluE3C#ci delta 25 hcmX@z#(KJqb;FbuT&B9l1_}lSRz^mf=dD;f3jltY3B~{b diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 3ab4695c4cc..45e54d1990b 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-12 23:47+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다." #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "매개변수" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "반환값" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "반환 형식" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "변수" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "함수" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "클래스" @@ -1964,7 +1964,7 @@ msgstr "템플릿 매개변수" msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" @@ -1979,7 +1979,7 @@ msgstr "%s() (클래스)" msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" @@ -1993,20 +1993,20 @@ msgstr "인수" msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "메서드" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "속성" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "모듈" @@ -2025,121 +2025,121 @@ msgstr "중복 레이블의 수식 %s, 다른 인스턴스는 %s에 있음" msgid "Invalid math_eqref_format: %r" msgstr "잘못된 math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "키워드" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "연산자" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "객체" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "예외" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "문" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "내장 함수" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "변수" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "예외 발생" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (%s의 특성)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "%s (%s의 특성)" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "폐지됨" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "특성" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s의 중복 객체 설명, 다른 인스턴스는 %s에 있으며, 이 중 하나에 :noindex:를 사용하십시오" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "상호 참조 %r에 대해 둘 이상의 대상을 찾았습니다: %s" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (폐지됨)" @@ -2859,7 +2859,7 @@ msgid "" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" @@ -2895,7 +2895,7 @@ msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "%r에 대한 서명을 업데이트하지 못했습니다. 매개변수 msgid "Failed to parse type_comment for %r: %s" msgstr "%r에 대한 type_comment를 해석하지 못했습니다: %s" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary가 제외된 문서 %r을(를) 참조합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary: 스텁 파일 %r을(를) 찾을 수 없습니다. autosummary_generate 설정을 확인하십시오." -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "캡션이 있는 자동 요약에는 :toctree: 옵션이 필요합니다. 무시합니다." -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "autosummary: %s을(를) import 하지 못했습니다" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "이름 %s을(를) 해석하지 못함" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "객체 %s을(를) import 하지 못함" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: 파일을 찾을 수 없음: %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 263db0082c1afc5bfa8c3de16b2379d49ce8211a..12e364d91e55280059bc360bff1124deb609b176 100644 GIT binary patch delta 23 ecmexk{>Oa7J^?N>T>~=(0|P5Vv&|<2Ot=ASz6YZK delta 23 ecmexk{>Oa7J^?OMU1I|U0|P4~qs=D-Ot=ASeFvNX diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index a9a3880c490..3681d6e36e3 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrai" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Grąžinamos reikšmės" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "kintamasis" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klasė" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" @@ -1978,7 +1978,7 @@ msgstr "%s() (klasė)" msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" @@ -1992,20 +1992,20 @@ msgstr "Argumentais" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribudas" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modulis" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "bazinis žodis" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operatorius" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objektas" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "išimtis" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "sakinis" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "įtaisytoji funkcija" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Kintamieji" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (atmestas)" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 0f920f99b2c99e3a0846b2f1e6df55425c1154a2..ee1a219f4dc17d21f8070ec343c8c2158f8bdb60 100644 GIT binary patch delta 23 ecmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Atgriež" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Atgriežamais tips" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "mainīgais" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klase" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" @@ -1991,20 +1991,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atributs" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modulis" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "atslēgas vārds" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operators" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekts" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "izņēmums" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "priekšraksts" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "iebūvēta funkcija" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Mainīgie" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index a4cc81cd0822a0939fb20d98515253c244d16619..577795b9a3d4603cc0ed6fdff3f643bf92c779d6 100644 GIT binary patch delta 25 gcmX@s#CWWUaf7)$mzl1CnSz0Vm7&>YM|oBy0B95j#{d8T delta 25 gcmX@s#CWWUaf7)$m#MC?fr5d7m66eAM|oBy0B6$%zyJUM diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index d161221158b..1c6c01e2d26 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -1845,17 +1845,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметры" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Результат" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Тип результата" @@ -1873,7 +1873,7 @@ msgid "variable" msgstr "переменная" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функция" @@ -1951,7 +1951,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "класс" @@ -1968,7 +1968,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" @@ -1983,7 +1983,7 @@ msgstr "%s() (класс)" msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -1997,20 +1997,20 @@ msgstr "Аргументы" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "модуль" @@ -2029,121 +2029,121 @@ msgstr "повторяющаяся метка уравнения %s, также msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "ключевое слово" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "оператор" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "объект" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "исключение" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "команда" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "базовая функция" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Переменные" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "(использование не рекомендуется)" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,7 +2899,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 90a511730a8b8e1dd9cee66156be4702d0e67bdb..062807f0b2bd37777040b98d94dce4b79799fe7b 100644 GIT binary patch delta 23 ecmeB|>6h8CmyOFz*T77{z`)ATZ1Zt84|V`k+6IjP delta 23 ecmeB|>6h8CmyOF**VsV8z`)ALX!CJ44|V`knFfXc diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index ced19e4fddf..376bf15f4a2 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "පරාමිතීන්" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "විචල්‍යය" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "ක්‍රියාව" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "වස්තුව" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "විචල්‍ය" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 0d74f315953e5d71ea3a3aa18b1f5b528aea82b7..bc867c25ac50585fde802199e742211fbef979ad 100644 GIT binary patch delta 25 hcmdlspJm&8mJROHxXg47%oGd^tPIUI2Tn_^1ORq{2&@1A delta 25 hcmdlspJm&8mJROHxJ-484HOIvtc;8{2Tn_^1ORqG2&Di3 diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 5e22a66f881..93a2cc49909 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -1842,17 +1842,17 @@ msgid "" msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'." #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vracia" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Návratový typ" @@ -1870,7 +1870,7 @@ msgid "variable" msgstr "premenná" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcia" @@ -1948,7 +1948,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "trieda" @@ -1965,7 +1965,7 @@ msgstr "parameter šablóny" msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" @@ -1980,7 +1980,7 @@ msgstr "%s() (trieda)" msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" @@ -1994,20 +1994,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribút" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2026,121 +2026,121 @@ msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" msgid "Invalid math_eqref_format: %r" msgstr "neplatný math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "kľúč. slovo" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operátor" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "výnimka" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "príkaz" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "zabudovaná funkcia" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Premenné" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (vlastnosť %s)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "%s (vlastnosť %s)" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "vlastnosť" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "duplicitný popis objektu %s, ďalší výskyt v %s, použite :noindex: pre jeden z nich" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, 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.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (zastarané)" @@ -2860,7 +2860,7 @@ msgid "" msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2917,43 +2917,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Autosummary s popiskom vyžaduje voľbu :toctree: , ignorované." -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "zlyhalo spracovanie mena %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "zlyhal import objektu %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: súbor nenájdený: %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 2c5b9cf1067..ae10cd1e600 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1857,17 +1857,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1885,7 +1885,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1963,7 +1963,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1980,7 +1980,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1995,7 +1995,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -2009,20 +2009,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2041,121 +2041,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: " "for one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2875,7 +2875,7 @@ msgid "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2911,7 +2911,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." @@ -2932,43 +2932,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does " "not contain .rst. Skipped." diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 9045d1e23fd1c8920ffec26b4f03f6b5be09d130..e67510334c46d1770db45870a023675d6d7a8867 100644 GIT binary patch delta 21 ccmcb}a*<_18<&}`ftiAVft8`z#t8=*0ZZEkxBvhE delta 21 ccmcb}a*<_18<(lBv4Mhtft8Wb#t8=*0ZX9b%7 diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 7cb77749eaa..585b9b68ad1 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 9c0e87ba5b2..025b04f2931 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ # BouRock, 2020 # Fırat Özgül , 2013-2016 # FIRST AUTHOR , 2011 -# tamer ba , 2020 +# tamerb2050 , 2020 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index be25d2a86b3d0a969d964c4727297e5cb73db3d4..78fc682591bca6a12d57aa35f3a5da024dde1034 100644 GIT binary patch delta 23 ecmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Повертає" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Тип повернення" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функція" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "клас" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -1978,7 +1978,7 @@ msgstr "%s() (клас)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "модуль" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "ключове слово" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "оператор" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "об'єкт" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "виняткова ситуація" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "вираз" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "вбудована функція" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (застарілий)" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." From e0500f7354989e5190ec874376535a1dfe65bab5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 6 Jun 2021 12:52:44 +0900 Subject: [PATCH 041/160] doc: Fix docslint misunderstanding scope of code-blocks --- doc/development/theming.rst | 6 ++-- doc/extdev/appapi.rst | 13 +++++---- doc/faq.rst | 4 ++- doc/usage/advanced/websupport/quickstart.rst | 8 +++--- doc/usage/extensions/napoleon.rst | 11 ++------ doc/usage/installation.rst | 29 ++++++++++++++------ doc/usage/theming.rst | 3 +- utils/doclinter.py | 2 +- 8 files changed, 44 insertions(+), 32 deletions(-) diff --git a/doc/development/theming.rst b/doc/development/theming.rst index 5de10158ae4..da2c644b9c6 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -207,9 +207,9 @@ inside your module: 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 +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:: diff --git a/doc/extdev/appapi.rst b/doc/extdev/appapi.rst index 41318e9d62b..ff9f8249aa5 100644 --- a/doc/extdev/appapi.rst +++ b/doc/extdev/appapi.rst @@ -159,7 +159,9 @@ connect handlers to the events. Example: 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:: +type for that event: + +.. code-block:: none 1. event.config-inited(app,config) 2. event.builder-inited(app) @@ -168,7 +170,7 @@ type for that event:: 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 @@ -176,10 +178,10 @@ type for that event:: 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) @@ -377,7 +379,8 @@ Here is a more detailed list of these events. ``'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. + :meth:`Sphinx.add_js_file` and :meth:`Sphinx.add_css_file` since + v3.5.0. .. versionadded:: 0.4 diff --git a/doc/faq.rst b/doc/faq.rst index 93486db7510..4b273023d3a 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -259,7 +259,9 @@ The following list gives some hints for the creation of epub files: ``parent.xhtml`` -> ``child.xhtml`` -> ``parent.xhtml`` - If you get the following error, fix your document structure:: + If you get the following error, fix your document structure: + + .. code-block:: none Error(prcgen):E24011: TOC section scope is not included in the parent chapter:(title) Error(prcgen):E24001: The table of content could not be built. diff --git a/doc/usage/advanced/websupport/quickstart.rst b/doc/usage/advanced/websupport/quickstart.rst index 1c7e7cd35d9..5fa5b00f14c 100644 --- a/doc/usage/advanced/websupport/quickstart.rst +++ b/doc/usage/advanced/websupport/quickstart.rst @@ -112,8 +112,8 @@ must update the websupport package's data:: should be a boolean representing whether the user has moderation privileges. The default value for *moderator* is ``False``. -An example `Flask `_ function that checks whether a -user is logged in and then retrieves a document is:: +An example `Flask `_ function that checks +whether a user is logged in and then retrieves a document is:: from sphinxcontrib.websupport.errors import * @@ -152,8 +152,8 @@ To use the search form built-in to the Sphinx sidebar, create a function to handle requests to the URL 'search' relative to the documentation root. The user's search query will be in the GET parameters, with the key `q`. Then use the :meth:`~sphinxcontrib.websupport.WebSupport.get_search_results` method to -retrieve search results. In `Flask `_ that would be -like this:: +retrieve search results. In `Flask `_ that +would be like this:: @app.route('/search') def search(): diff --git a/doc/usage/extensions/napoleon.rst b/doc/usage/extensions/napoleon.rst index 2752b1479b1..3f044d6e637 100644 --- a/doc/usage/extensions/napoleon.rst +++ b/doc/usage/extensions/napoleon.rst @@ -267,14 +267,9 @@ Google style with types in docstrings:: `Python 2/3 compatible annotations`_ aren't currently supported by Sphinx and won't show up in the docs. -.. _PEP 484: - https://www.python.org/dev/peps/pep-0484/ - -.. _PEP 526: - https://www.python.org/dev/peps/pep-0526/ - -.. _Python 2/3 compatible annotations: - https://www.python.org/dev/peps/pep-0484/#suggested-syntax-for-python-2-7-and-straddling-code +.. _PEP 484: https://www.python.org/dev/peps/pep-0484/ +.. _PEP 526: https://www.python.org/dev/peps/pep-0526/ +.. _Python 2/3 compatible annotations: https://www.python.org/dev/peps/pep-0484/#suggested-syntax-for-python-2-7-and-straddling-code Configuration diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index f0384ea9dda..49681f2ba96 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -189,26 +189,37 @@ the ``--pre`` flag. Docker ------ -Docker images for Sphinx are published on the `Docker Hub `_. There are two kind of images: +Docker images for Sphinx are published on the `Docker Hub`_. There are two kind +of images: -- `sphinxdoc/sphinx `_ -- `sphinxdoc/sphinx-latexpdf `_ +- `sphinxdoc/sphinx`_ +- `sphinxdoc/sphinx-latexpdf`_ -Former one is used for standard usage of Sphinx, and latter one is mainly used for PDF builds using LaTeX. -Please choose one for your purpose. +.. _Docker Hub: https://hub.docker.com/ +.. _sphinxdoc/sphinx: https://hub.docker.com/repository/docker/sphinxdoc/sphinx +.. _sphinxdoc/sphinx-latexpdf: https://hub.docker.com/repository/docker/sphinxdoc/sphinx-latexpdf> + +Former one is used for standard usage of Sphinx, and latter one is mainly used for +PDF builds using LaTeX. Please choose one for your purpose. .. note:: - sphinxdoc/sphinx-latexpdf contains TeXLive packages. So the image is very large (over 2GB!). + sphinxdoc/sphinx-latexpdf contains TeXLive packages. So the image is very large + (over 2GB!). .. hint:: - When using docker images, please use ``docker run`` command to invoke sphinx commands. For example, - you can use following command to create a Sphinx project:: + When using docker images, please use ``docker run`` command to invoke sphinx + commands. For example, you can use following command to create a Sphinx + project: + + .. code-block:: bash $ docker run -it --rm -v /path/to/document:/docs sphinxdoc/sphinx sphinx-quickstart - And you can following command this to build HTML document:: + And you can following command this to build HTML document: + + .. code-block:: bash $ docker run --rm -v /path/to/document:/docs sphinxdoc/sphinx make html diff --git a/doc/usage/theming.rst b/doc/usage/theming.rst index 8ea574cfd24..60bc20e24fb 100644 --- a/doc/usage/theming.rst +++ b/doc/usage/theming.rst @@ -248,7 +248,8 @@ These themes are: **scrolls** A more lightweight theme, based on `the Jinja documentation - `_. The following color options are available: + `_. The following color options are + available: - **headerbordercolor** - **subheadlinecolor** diff --git a/utils/doclinter.py b/utils/doclinter.py index f8df20bf7f8..6299fe46acf 100644 --- a/utils/doclinter.py +++ b/utils/doclinter.py @@ -41,7 +41,7 @@ def lint(path: str) -> int: pass else: spaces = LEADING_SPACES.match(line).group(1) - if len(spaces) < code_block_depth: + if len(spaces) <= code_block_depth: in_code_block = False elif LONG_INTERPRETED_TEXT.match(line): pass From a2a8a07430d21fe9e9c59f0d2eb930d85200b1bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sun, 6 Jun 2021 10:56:23 +0200 Subject: [PATCH 042/160] Adjust line length --- doc/tutorial/index.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index c42189fb9f3..b2f30df0aa6 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -94,8 +94,8 @@ required to create the basic directory and configuration layout for your project inside the ``docs`` folder. To proceed, answer each question as follows: -- ``> Separate source and build directories (y/n) [n]``: Write "``y``" (without quotes) - and press :kbd:`Enter`. +- ``> Separate source and build directories (y/n) [n]``: Write "``y``" + (without quotes) and press :kbd:`Enter`. - ``> Project name``: Write "``Lumache``" (without quotes) and press :kbd:`Enter`. - ``> Author name(s)``: Write "``Graziella``" (without quotes) @@ -192,7 +192,8 @@ This showcases several features of the reStructuredText syntax, including: - two examples of :ref:`rst-inline-markup`: ``**strong emphasis**`` (typically bold) and ``*emphasis*`` (typically italics), - an **inline external link**, -- and a ``note`` **admonition** (one of the available :ref:`directives `) +- and a ``note`` **admonition** (one of the available + :ref:`directives `) Now to render it with the new content, you can use the ``sphinx-build`` command as before, From aee105ce4681ad21bb78b6f3ef78fd55ebbd9f7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Sun, 6 Jun 2021 17:19:39 +0200 Subject: [PATCH 043/160] Rewrap text --- doc/tutorial/index.rst | 179 +++++++++++++++++------------------------ 1 file changed, 74 insertions(+), 105 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index b2f30df0aa6..39ce7b697fd 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -4,32 +4,28 @@ Sphinx tutorial =============== -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, handwritten documentation, -as well as autogenerated API documentation. - -The tutorial is aimed towards Sphinx newcomers -willing to learn the fundamentals of how projects are created and structured. -You will create a fictional software library to generate random food recipes -that will serve as a guide throughout the process, -with the objective of properly documenting it. - -To showcase Sphinx capabilities for code documentation -you will use Python, +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, +handwritten documentation, as well as autogenerated API documentation. + +The tutorial is aimed towards Sphinx newcomers willing to learn the fundamentals +of how projects are created and structured. You will create a fictional +software library to generate random food recipes that will serve as a guide +throughout the process, with the objective of properly documenting it. + +To showcase Sphinx capabilities for code documentation you will use Python, which also supports *automatic* documentation generation. .. note:: - Several other languages are natively supported in Sphinx - for *manual* code documentation, - however they require extensions for *automatic* code documentation, - like `Breathe `_. + Several other languages are natively supported in Sphinx for *manual* code + documentation, however they require extensions for *automatic* code + documentation, like `Breathe `_. -To follow the instructions you will need access to a Linux-like command line -and a basic understanding of how it works, -as well as a working Python installation for development, -since you will use *Python virtual environments* to create the project. +To follow the instructions you will need access to a Linux-like command line and +a basic understanding of how it works, as well as a working Python installation +for development, since you will use *Python virtual environments* to create the +project. Getting started --------------- @@ -37,23 +33,20 @@ Getting started Setting up your project and development environment ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -In a new directory, -create a file called ``README.rst`` -with the following content. +In a new directory, create a file called ``README.rst`` with the following +content. .. code-block:: rest Lumache ======= - **Lumache** (/luˈmake/) is a Python library for cooks and food lovers - that creates recipes mixing random ingredients. + **Lumache** (/luˈmake/) is a Python library for cooks and food lovers that + creates recipes mixing random ingredients. -It is a good moment to create a Python virtual environment -and install the required tools. -For that, open a command line terminal, -``cd`` into the directory you just created, -and run the following commands: +It is a good moment to create a Python virtual environment and install the +required tools. For that, open a command line terminal, ``cd`` into the +directory you just created, and run the following commands: .. code-block:: console @@ -63,14 +56,12 @@ and run the following commands: .. note:: - The installation method used above - is described in more detail in :ref:`install-pypi`. - For the rest of this tutorial, - the instructions will assume a Python virtual environment. + The installation method used above is described in more detail in + :ref:`install-pypi`. For the rest of this tutorial, the instructions will + assume a Python virtual environment. -If you executed these instructions correctly, -you should have the Sphinx command line tools available. -You can do a basic verification running this command: +If you executed these instructions correctly, you should have the Sphinx command +line tools available. You can do a basic verification running this command: .. code-block:: console @@ -82,80 +73,63 @@ If you see a similar output, you are on the right path! Creating the documentation layout ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Then from the command line, -run the following command: +Then from the command line, run the following command: .. code-block:: console (.venv) $ sphinx-quickstart docs -This will present to you a series of questions -required to create the basic directory and configuration layout for your project -inside the ``docs`` folder. +This will present to you a series of questions required to create the basic +directory and configuration layout for your project inside the ``docs`` folder. To proceed, answer each question as follows: -- ``> Separate source and build directories (y/n) [n]``: Write "``y``" - (without quotes) and press :kbd:`Enter`. -- ``> Project name``: Write "``Lumache``" (without quotes) - and press :kbd:`Enter`. -- ``> Author name(s)``: Write "``Graziella``" (without quotes) - and press :kbd:`Enter`. -- ``> Project release []``: Write "``0.1``" (without quotes) - and press :kbd:`Enter`. -- ``> Project language [en]``: Leave it empty (the default, English) - and press :kbd:`Enter`. +- ``> Separate source and build directories (y/n) [n]``: Write "``y``" (without + quotes) and press :kbd:`Enter`. - ``> Project name``: Write "``Lumache``" + (without quotes) and press :kbd:`Enter`. - ``> Author name(s)``: Write + "``Graziella``" (without quotes) and press :kbd:`Enter`. - ``> Project + release []``: Write "``0.1``" (without quotes) and press :kbd:`Enter`. - ``> + Project language [en]``: Leave it empty (the default, English) and press + :kbd:`Enter`. -After the last question, -you will see the new ``docs`` directory with the following content. +After the last question, you will see the new ``docs`` directory with the +following content. .. code-block:: text - docs - ├── build - ├── make.bat - ├── Makefile - └── source - ├── conf.py - ├── index.rst - ├── _static - └── _templates + docs ├── build ├── make.bat ├── Makefile └── source ├── conf.py ├── + index.rst ├── _static └── _templates The purpose of each of these files is: ``build/`` - An empty directory (for now) - that will hold the rendered documentation. + An empty directory (for now) that will hold the rendered documentation. ``make.bat`` and ``Makefile`` - Convenience scripts - to simplify some common Sphinx operations, - such as rendering the content. + Convenience scripts to simplify some common Sphinx operations, such as + rendering the content. ``source/conf.py`` - A Python script holding the configuration of the Sphinx project. - It contains the project name and release you specified to ``sphinx-quickstart``, - as well as some extra configuration keys. + A Python script holding the configuration of the Sphinx project. It contains + the project name and release you specified to ``sphinx-quickstart``, as well + as some extra configuration keys. ``source/index.rst`` - The :term:`master document` of the project, - which serves as welcome page - and contains the root of the "table of contents tree" (or *toctree*). + The :term:`master document` of the project, which serves as welcome page and + contains the root of the "table of contents tree" (or *toctree*). -Thanks to this bootstrapping step, -you already have everything needed -to render the documentation as HTML for the first time. -To do that, run this command: +Thanks to this bootstrapping step, you already have everything needed to render +the documentation as HTML for the first time. To do that, run this command: .. code-block:: console (.venv) $ sphinx-build -b html docs/source/ docs/build/html -And finally, open `docs/build/html/index.html` in your browser. -You should see something like this: +And finally, open `docs/build/html/index.html` in your browser. You should see +something like this: .. image:: /_static/tutorial/lumache-first-light.png @@ -164,11 +138,9 @@ There we go! You created your first HTML documentation using Sphinx. Making some tweaks to the index ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The ``index.rst`` file that ``sphinx-quickstart`` created -has some content already, -and it gets rendered as the front page of our HTML documentation. -It is written in reStructuredText, -a powerful markup language. +The ``index.rst`` file that ``sphinx-quickstart`` created has some content +already, and it gets rendered as the front page of our HTML documentation. It +is written in reStructuredText, a powerful markup language. Modify the file as follows: @@ -177,10 +149,10 @@ Modify the file as follows: Welcome to Lumache's documentation! =================================== - **Lumache** (/luˈmake/) is a Python library for cooks and food lovers - that creates recipes mixing random ingredients. - It pulls data from the `Open Food Facts database `_ - and offers a *simple* and *intuitive* API. + **Lumache** (/luˈmake/) is a Python library for cooks and food lovers that + creates recipes mixing random ingredients. It pulls data from the `Open Food + Facts database `_ and offers a *simple* and + *intuitive* API. .. note:: @@ -188,29 +160,26 @@ Modify the file as follows: This showcases several features of the reStructuredText syntax, including: -- a **section header** using ``===`` for the underline, -- two examples of :ref:`rst-inline-markup`: ``**strong emphasis**`` (typically bold) - and ``*emphasis*`` (typically italics), -- an **inline external link**, -- and a ``note`` **admonition** (one of the available - :ref:`directives `) +- a **section header** using ``===`` for the underline, - two examples of + :ref:`rst-inline-markup`: ``**strong emphasis**`` (typically bold) and + ``*emphasis*`` (typically italics), - an **inline external link**, - and a + ``note`` **admonition** (one of the available :ref:`directives + `) -Now to render it with the new content, -you can use the ``sphinx-build`` command as before, -or leverage the convenience script as follows: +Now to render it with the new content, you can use the ``sphinx-build`` command +as before, or leverage the convenience script as follows: .. code-block:: console (.venv) $ cd docs (.venv) $ make html -After running this command, -you will see that ``index.html`` reflects the new changes! +After running this command, you will see that ``index.html`` reflects the new +changes! Where to go from here --------------------- -This tutorial covered -the very first steps to create a documentation project with Sphinx. -To continue learning more about Sphinx, -check out the :ref:`rest of the documentation `. +This tutorial covered the very first steps to create a documentation project +with Sphinx. To continue learning more about Sphinx, check out the :ref:`rest +of the documentation `. From 488df3ffa89605b173b22a312e2ef6e78a7fdb5e Mon Sep 17 00:00:00 2001 From: Tim Hoffmann <2836374+timhoffm@users.noreply.github.com> Date: Mon, 7 Jun 2021 22:12:27 +0200 Subject: [PATCH 044/160] Prevent corrections and completions in search field In particular mobile browsers use correction mechanisms on input fields. Search will often be done with technical terms or even class/method/etc names that these correction mechanisms do not know, resulting in unwanted changes. This PR deactivates these correction mechanisms. While I haven't been able to find official reference documentation on these input attributes, there are multiple sources, describing this, e.g. References: - Autocomplete: https://www.w3schools.com/howto/howto_html_autocomplete_off.asp - Spellckeck: https://www.w3schools.com/howto/howto_html_spellcheck_disable.asp I did not find official reference docs on autocorrect and autocapitalize, but they are mentioned in various sources, e.g. - https://mgearon.com/html/disable-autocomplete-autocapitalize-and-autocorrect/ - https://stackoverflow.com/questions/35513968/disable-auto-correct-in-safari-text-input - https://davidwalsh.name/disable-autocorrect and it works, as can easily be checked with a mobile device on the demos in the above links. --- sphinx/themes/basic/search.html | 2 +- sphinx/themes/basic/searchbox.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/themes/basic/search.html b/sphinx/themes/basic/search.html index 5ba3c017e35..e492b8d37e4 100644 --- a/sphinx/themes/basic/search.html +++ b/sphinx/themes/basic/search.html @@ -37,7 +37,7 @@

{{ _('Search') }}

{% endblock %} {% block searchbox %}
- +
diff --git a/sphinx/themes/basic/searchbox.html b/sphinx/themes/basic/searchbox.html index 68f933f6609..e0094cd7889 100644 --- a/sphinx/themes/basic/searchbox.html +++ b/sphinx/themes/basic/searchbox.html @@ -12,7 +12,7 @@

{{ _('Quick search') }}

From 84d4a5b97aa14835dbb02741664844164e166308 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Mon, 7 Jun 2021 13:57:15 -0400 Subject: [PATCH 045/160] failing test for linkcheck of US Patent page --- .../conf.py | 1 + .../index.rst | 1 + tests/test_build_linkcheck.py | 17 +++++++++++++++++ 3 files changed, 19 insertions(+) create mode 100644 tests/roots/test-linkcheck-connection-error-on-http-head/conf.py create mode 100644 tests/roots/test-linkcheck-connection-error-on-http-head/index.rst diff --git a/tests/roots/test-linkcheck-connection-error-on-http-head/conf.py b/tests/roots/test-linkcheck-connection-error-on-http-head/conf.py new file mode 100644 index 00000000000..a45d22e2821 --- /dev/null +++ b/tests/roots/test-linkcheck-connection-error-on-http-head/conf.py @@ -0,0 +1 @@ +exclude_patterns = ['_build'] diff --git a/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst b/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst new file mode 100644 index 00000000000..bdb5fecb207 --- /dev/null +++ b/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst @@ -0,0 +1 @@ +This is `a link to the US Patent Website `_ diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index fd7a5482abd..810d5555ede 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -575,3 +575,20 @@ def test_limit_rate_bails_out_after_waiting_max_time(app): rate_limits) next_check = worker.limit_rate(FakeResponse()) assert next_check is None + + +@pytest.mark.sphinx('linkcheck', testroot='linkcheck-connection-error-on-http-head', freshenv=True) +def test_get_after_head_raises_connection_error(app): + class InternalServerErrorHandler(http.server.BaseHTTPRequestHandler): + def do_GET(self): + self.send_error(500, "Internal Server Error") + + with http_server(InternalServerErrorHandler): + app.build() + content = (app.outdir / 'output.txt').read_text() + assert "broken" not in content + # assert content == ( + # "index.rst:1: [broken] http://localhost:7777/#anchor: " + # "500 Server Error: Internal Server Error " + # "for url: http://localhost:7777/\n" + # ) From 57c866caf1b64a23d08436b49c5e23313ec68259 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Mon, 7 Jun 2021 16:50:42 -0400 Subject: [PATCH 046/160] catch ConnectionError on HEAD --- sphinx/builders/linkcheck.py | 4 ++-- tests/test_build_linkcheck.py | 14 ++------------ 2 files changed, 4 insertions(+), 14 deletions(-) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 05e12c1730e..a3d2eb93599 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -26,7 +26,7 @@ from docutils import nodes from docutils.nodes import Element from requests import Response -from requests.exceptions import HTTPError, TooManyRedirects +from requests.exceptions import HTTPError, TooManyRedirects, ConnectionError from sphinx.application import Sphinx from sphinx.builders.dummy import DummyBuilder @@ -460,7 +460,7 @@ def check_uri() -> Tuple[str, str, int]: config=self.config, auth=auth_info, **kwargs) response.raise_for_status() - except (HTTPError, TooManyRedirects) as err: + except (HTTPError, TooManyRedirects, ConnectionError) as err: if isinstance(err, HTTPError) and err.response.status_code == 429: raise # retry with GET request if that fails, some servers diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index 810d5555ede..9966d21be49 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -579,16 +579,6 @@ def test_limit_rate_bails_out_after_waiting_max_time(app): @pytest.mark.sphinx('linkcheck', testroot='linkcheck-connection-error-on-http-head', freshenv=True) def test_get_after_head_raises_connection_error(app): - class InternalServerErrorHandler(http.server.BaseHTTPRequestHandler): - def do_GET(self): - self.send_error(500, "Internal Server Error") - - with http_server(InternalServerErrorHandler): - app.build() + app.build() content = (app.outdir / 'output.txt').read_text() - assert "broken" not in content - # assert content == ( - # "index.rst:1: [broken] http://localhost:7777/#anchor: " - # "500 Server Error: Internal Server Error " - # "for url: http://localhost:7777/\n" - # ) + assert not content From 11b4345ff5fd412dab621bae5fd7a7ced15ab326 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Mon, 7 Jun 2021 17:35:25 -0400 Subject: [PATCH 047/160] Resolves bug #9306 --- .../test-linkcheck-connection-error-on-http-head/index.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst b/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst index bdb5fecb207..ea799681512 100644 --- a/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst +++ b/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst @@ -1 +1,3 @@ +This tests bug #9306. + This is `a link to the US Patent Website `_ From 20cf6695a388a7551cba77e7d11349cbd52efd0c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Jun 2021 11:45:30 +0000 Subject: [PATCH 048/160] build(deps): bump glob-parent from 5.0.0 to 5.1.2 Bumps [glob-parent](https://github.com/gulpjs/glob-parent) from 5.0.0 to 5.1.2. - [Release notes](https://github.com/gulpjs/glob-parent/releases) - [Changelog](https://github.com/gulpjs/glob-parent/blob/main/CHANGELOG.md) - [Commits](https://github.com/gulpjs/glob-parent/compare/v5.0.0...v5.1.2) --- updated-dependencies: - dependency-name: glob-parent dependency-type: indirect ... Signed-off-by: dependabot[bot] --- package-lock.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 6fd89f9dbee..96cd10a63fc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -486,9 +486,9 @@ } }, "glob-parent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.0.0.tgz", - "integrity": "sha512-Z2RwiujPRGluePM6j699ktJYxmPpJKCfpGA13jz2hmFZC7gKetzrWvg5KN3+OsIFmydGyZ1AVwERCq1w/ZZwRg==", + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "requires": { "is-glob": "^4.0.1" From 7cc87d84c47dcd53fcd22127975efd3355f70995 Mon Sep 17 00:00:00 2001 From: jfbu Date: Tue, 8 Jun 2021 23:14:01 +0200 Subject: [PATCH 049/160] Fix #9313 --- sphinx/writers/latex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 546db9e31be..796e0cb92fb 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -966,7 +966,7 @@ def visit_row(self, node: Element) -> None: # insert suitable strut for equalizing row heights in given multirow self.body.append(r'\sphinxtablestrut{%d}' % cell.cell_id) else: # use \multicolumn for wide multirow cell - self.body.append(r'\multicolumn{%d}{|l|}\sphinxtablestrut{%d}}' % + self.body.append(r'\multicolumn{%d}{|l|}{\sphinxtablestrut{%d}}' % (cell.width, cell.cell_id)) def depart_row(self, node: Element) -> None: From 67e48df37819e78e26aa6aefc11031948d70fbca Mon Sep 17 00:00:00 2001 From: jfbu Date: Wed, 9 Jun 2021 07:40:35 +0200 Subject: [PATCH 050/160] Update CHANGES --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 5b890fe8420..b5011d71847 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* 9313: LaTeX: complex table with merged cells broken since 4.0 + Testing -------- From 445b9aded7b0de476d2a5d96a30ea49ee446d03d Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 9 Jun 2021 20:28:13 +0200 Subject: [PATCH 051/160] Fix missing break statement for arrow shortcuts. When one presses left key at the first page, `case 37` falls through to `case 39` and the next page is visited. --- sphinx/themes/basic/static/doctools.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sphinx/themes/basic/static/doctools.js b/sphinx/themes/basic/static/doctools.js index 61ac9d266f9..8cbf1b161a6 100644 --- a/sphinx/themes/basic/static/doctools.js +++ b/sphinx/themes/basic/static/doctools.js @@ -301,12 +301,14 @@ var Documentation = { window.location.href = prevHref; return false; } + break; case 39: // right var nextHref = $('link[rel="next"]').prop('href'); if (nextHref) { window.location.href = nextHref; return false; } + break; } } }); From db9adaceafe9769509d9b482ee8d7afdced09a44 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Wed, 9 Jun 2021 23:40:40 -0400 Subject: [PATCH 052/160] Trigger the bad web server behaviour with the http_server context manager instead of relying on an external website. --- .../index.rst | 4 +--- tests/test_build_linkcheck.py | 13 ++++++++++++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst b/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst index ea799681512..0d25e5d260a 100644 --- a/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst +++ b/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst @@ -1,3 +1 @@ -This tests bug #9306. - -This is `a link to the US Patent Website `_ +`This `_ tests bug #9306. diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index 9966d21be49..e0e7982b39e 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -577,8 +577,19 @@ def test_limit_rate_bails_out_after_waiting_max_time(app): assert next_check is None +class ConnectionResetHandler(http.server.BaseHTTPRequestHandler): + def do_HEAD(self): + raise requests.ConnectionError + + def do_GET(self): + self.send_response(200, "OK") + self.end_headers() + + @pytest.mark.sphinx('linkcheck', testroot='linkcheck-connection-error-on-http-head', freshenv=True) def test_get_after_head_raises_connection_error(app): - app.build() + app.config.tls_verify = False + with https_server(ConnectionResetHandler): + app.build() content = (app.outdir / 'output.txt').read_text() assert not content From e10a31b10aced3771c9c3594c163cfcd22d770db Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Wed, 9 Jun 2021 23:45:32 -0400 Subject: [PATCH 053/160] making a note in the change log --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 5b890fe8420..0fbc2f2df32 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* #9306: Linkcheck Reports Broken Link when Remote Server Closes on HEAD Request + Testing -------- From 935df33d950c2388e9d5a30c1c902bbd1d23f22e Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Wed, 9 Jun 2021 23:56:02 -0400 Subject: [PATCH 054/160] comment explaining why try GET when HEAD got a ConnectionError --- sphinx/builders/linkcheck.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index a3d2eb93599..65a9a88c95d 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -460,6 +460,11 @@ def check_uri() -> Tuple[str, str, int]: config=self.config, auth=auth_info, **kwargs) response.raise_for_status() + # When there is a ConnectionError from the HEAD request, it might be due to + # the webserver intentionally dropping the connection when it sees HEAD requests + # but still responding properly to GET requests. This has been observed in the + # wild with at https://patft.uspto.gov/. + # See https://github.com/sphinx-doc/sphinx/issues/9306 for more details. except (HTTPError, TooManyRedirects, ConnectionError) as err: if isinstance(err, HTTPError) and err.response.status_code == 429: raise From 68ff1b603458cf23cc8739e6fabc945cdaea084a Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:39:03 -0400 Subject: [PATCH 055/160] Update CHANGES MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 0fbc2f2df32..c81afeacb00 100644 --- a/CHANGES +++ b/CHANGES @@ -16,7 +16,7 @@ Features added Bugs fixed ---------- -* #9306: Linkcheck Reports Broken Link when Remote Server Closes on HEAD Request +* #9306: Linkcheck reports broken link when remote server closes on HEAD request Testing -------- From 193ea9153e842d3154c6439cdcd98c041a41763f Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:40:01 -0400 Subject: [PATCH 056/160] alphabetical ordering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- sphinx/builders/linkcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 65a9a88c95d..8d9a476f02e 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -26,7 +26,7 @@ from docutils import nodes from docutils.nodes import Element from requests import Response -from requests.exceptions import HTTPError, TooManyRedirects, ConnectionError +from requests.exceptions import ConnectionError, HTTPError, TooManyRedirects from sphinx.application import Sphinx from sphinx.builders.dummy import DummyBuilder From d804981a377b05de287f4b9941c76d9a530570d0 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:40:16 -0400 Subject: [PATCH 057/160] alphabetical ordering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- sphinx/builders/linkcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 8d9a476f02e..bc4b2204268 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -465,7 +465,7 @@ def check_uri() -> Tuple[str, str, int]: # but still responding properly to GET requests. This has been observed in the # wild with at https://patft.uspto.gov/. # See https://github.com/sphinx-doc/sphinx/issues/9306 for more details. - except (HTTPError, TooManyRedirects, ConnectionError) as err: + except (ConnectionError, HTTPError, TooManyRedirects) as err: if isinstance(err, HTTPError) and err.response.status_code == 429: raise # retry with GET request if that fails, some servers From ce305190c561bafc369aeb717f2646b3f4364af5 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:40:44 -0400 Subject: [PATCH 058/160] shorter explanatory comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- sphinx/builders/linkcheck.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index bc4b2204268..a81a0253d9e 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -460,11 +460,8 @@ def check_uri() -> Tuple[str, str, int]: config=self.config, auth=auth_info, **kwargs) response.raise_for_status() - # When there is a ConnectionError from the HEAD request, it might be due to - # the webserver intentionally dropping the connection when it sees HEAD requests - # but still responding properly to GET requests. This has been observed in the - # wild with at https://patft.uspto.gov/. - # See https://github.com/sphinx-doc/sphinx/issues/9306 for more details. + # Servers drop the connection on HEAD requests, causing + # ConnectionError. except (ConnectionError, HTTPError, TooManyRedirects) as err: if isinstance(err, HTTPError) and err.response.status_code == 429: raise From a4621fb73eef079959229c7fbc215639db202b4d Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:41:11 -0400 Subject: [PATCH 059/160] test with http MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- tests/test_build_linkcheck.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index e0e7982b39e..f9a874577c2 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -588,8 +588,7 @@ def do_GET(self): @pytest.mark.sphinx('linkcheck', testroot='linkcheck-connection-error-on-http-head', freshenv=True) def test_get_after_head_raises_connection_error(app): - app.config.tls_verify = False - with https_server(ConnectionResetHandler): + with http_server(ConnectionResetHandler): app.build() content = (app.outdir / 'output.txt').read_text() assert not content From 134a8d8f545b5161060798d50d2c981e64d1db77 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:41:47 -0400 Subject: [PATCH 060/160] reuse existing test link MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- tests/test_build_linkcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index f9a874577c2..1fea96d6c76 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -586,7 +586,7 @@ def do_GET(self): self.end_headers() -@pytest.mark.sphinx('linkcheck', testroot='linkcheck-connection-error-on-http-head', freshenv=True) +@pytest.mark.sphinx('linkcheck', testroot='linkcheck-localserver', freshenv=True) def test_get_after_head_raises_connection_error(app): with http_server(ConnectionResetHandler): app.build() From 9b2a1e20e23dc9830540bae6c707d8349de4e922 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:42:36 -0400 Subject: [PATCH 061/160] explicitly close the connection MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- tests/test_build_linkcheck.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index 1fea96d6c76..5a146b831cf 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -579,7 +579,7 @@ def test_limit_rate_bails_out_after_waiting_max_time(app): class ConnectionResetHandler(http.server.BaseHTTPRequestHandler): def do_HEAD(self): - raise requests.ConnectionError + self.connection.close() def do_GET(self): self.send_response(200, "OK") From 36c662eca58d36579ee854a1f9f440724b91aca2 Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:43:14 -0400 Subject: [PATCH 062/160] positive test assertion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- tests/test_build_linkcheck.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/tests/test_build_linkcheck.py b/tests/test_build_linkcheck.py index 5a146b831cf..78d6fe57b78 100644 --- a/tests/test_build_linkcheck.py +++ b/tests/test_build_linkcheck.py @@ -592,3 +592,12 @@ def test_get_after_head_raises_connection_error(app): app.build() content = (app.outdir / 'output.txt').read_text() assert not content + content = (app.outdir / 'output.json').read_text() + assert json.loads(content) == { + "filename": "index.rst", + "lineno": 1, + "status": "working", + "code": 0, + "uri": "http://localhost:7777/", + "info": "", + } From cf8f5fce371318123679ef14fd4a242485b733cf Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 11:46:17 -0400 Subject: [PATCH 063/160] delete redundant test content --- tests/roots/test-linkcheck-connection-error-on-http-head/conf.py | 1 - .../roots/test-linkcheck-connection-error-on-http-head/index.rst | 1 - 2 files changed, 2 deletions(-) delete mode 100644 tests/roots/test-linkcheck-connection-error-on-http-head/conf.py delete mode 100644 tests/roots/test-linkcheck-connection-error-on-http-head/index.rst diff --git a/tests/roots/test-linkcheck-connection-error-on-http-head/conf.py b/tests/roots/test-linkcheck-connection-error-on-http-head/conf.py deleted file mode 100644 index a45d22e2821..00000000000 --- a/tests/roots/test-linkcheck-connection-error-on-http-head/conf.py +++ /dev/null @@ -1 +0,0 @@ -exclude_patterns = ['_build'] diff --git a/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst b/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst deleted file mode 100644 index 0d25e5d260a..00000000000 --- a/tests/roots/test-linkcheck-connection-error-on-http-head/index.rst +++ /dev/null @@ -1 +0,0 @@ -`This `_ tests bug #9306. From 862d876c849925829691eba2bd975bf330f7567d Mon Sep 17 00:00:00 2001 From: Justin Mathews Date: Thu, 10 Jun 2021 12:54:17 -0400 Subject: [PATCH 064/160] Update CHANGES MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: François Freitag --- CHANGES | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index c81afeacb00..379334d9182 100644 --- a/CHANGES +++ b/CHANGES @@ -16,7 +16,8 @@ Features added Bugs fixed ---------- -* #9306: Linkcheck reports broken link when remote server closes on HEAD request +* #9306: Linkcheck reports broken link when remote server closes the connection + on HEAD request Testing -------- From 864a0b377d3ef6526837dfb721c260587ccb64f9 Mon Sep 17 00:00:00 2001 From: Raymond Sun Date: Fri, 11 Jun 2021 23:06:03 +1000 Subject: [PATCH 065/160] Add test --- tests/test_quickstart.py | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 94144ef2210..96b11daec7f 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -10,6 +10,7 @@ import time from io import StringIO +from os import path import pytest @@ -122,7 +123,6 @@ def test_quickstart_defaults(tempdir): assert (tempdir / 'Makefile').isfile() assert (tempdir / 'make.bat').isfile() - def test_quickstart_all_answers(tempdir): answers = { 'Root path': tempdir, @@ -250,3 +250,17 @@ def test_extensions(tempdir): ns = {} exec(conffile.read_text(), ns) assert ns['extensions'] == ['foo', 'bar', 'baz'] + +def test_easy_exit_when_existing_confpy(monkeypatch): + # The code detects existing conf.py with isfile() so we mock it + def mock_isfile(path): + return True + monkeypatch.setattr(path, 'isfile', mock_isfile) + + answers = { + 'Please enter a new root path': '', + } + qs.term_input = mock_input(answers) + d = {} + with pytest.raises(SystemExit): + qs.ask_user(d) \ No newline at end of file From 025db046580c400ad9a6d7eb04434bfc46ce3300 Mon Sep 17 00:00:00 2001 From: Raymond Sun Date: Fri, 11 Jun 2021 23:06:29 +1000 Subject: [PATCH 066/160] Add fix --- sphinx/cmd/quickstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index a40a2107310..29f1c50a63a 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -223,7 +223,7 @@ def ask_user(d: Dict) -> None: print(__('sphinx-quickstart will not overwrite existing Sphinx projects.')) print() d['path'] = do_prompt(__('Please enter a new root path (or just Enter to exit)'), - '', is_path) + '', ok) if not d['path']: sys.exit(1) From 81049deed6a9daaa887abd3cbf217237e225302d Mon Sep 17 00:00:00 2001 From: Raymond Sun Date: Sat, 12 Jun 2021 00:07:34 +1000 Subject: [PATCH 067/160] Make quickstart just exit without reprompting --- sphinx/cmd/quickstart.py | 7 ++----- tests/test_quickstart.py | 9 +++------ 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 29f1c50a63a..1b2eacc95e9 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -220,12 +220,9 @@ def ask_user(d: Dict) -> None: print() print(bold(__('Error: an existing conf.py has been found in the ' 'selected root path.'))) - print(__('sphinx-quickstart will not overwrite existing Sphinx projects.')) + print(__('sphinx-quickstart will not overwrite existing Sphinx projects. Try another directory?')) print() - d['path'] = do_prompt(__('Please enter a new root path (or just Enter to exit)'), - '', ok) - if not d['path']: - sys.exit(1) + sys.exit(1) if 'sep' not in d: print() diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 96b11daec7f..4ee5535cb65 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -251,16 +251,13 @@ def test_extensions(tempdir): exec(conffile.read_text(), ns) assert ns['extensions'] == ['foo', 'bar', 'baz'] -def test_easy_exit_when_existing_confpy(monkeypatch): +def test_exits_upon_existing_confpy(monkeypatch): # The code detects existing conf.py with isfile() so we mock it def mock_isfile(path): return True monkeypatch.setattr(path, 'isfile', mock_isfile) - answers = { - 'Please enter a new root path': '', - } - qs.term_input = mock_input(answers) + qs.term_input = mock_input({}) d = {} with pytest.raises(SystemExit): - qs.ask_user(d) \ No newline at end of file + qs.ask_user(d) From 17114d7741e8f2c32d477c09f2bae7affd95bba8 Mon Sep 17 00:00:00 2001 From: Raymond Sun Date: Sat, 12 Jun 2021 00:19:12 +1000 Subject: [PATCH 068/160] Edit message --- sphinx/cmd/quickstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 1b2eacc95e9..359355ad11b 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -220,7 +220,7 @@ def ask_user(d: Dict) -> None: print() print(bold(__('Error: an existing conf.py has been found in the ' 'selected root path.'))) - print(__('sphinx-quickstart will not overwrite existing Sphinx projects. Try another directory?')) + print(__('sphinx-quickstart will not overwrite existing Sphinx projects.')) print() sys.exit(1) From 48ff013794ba71b38ac7292c537e0d2f76e56bf3 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 13 Jun 2021 00:09:12 +0000 Subject: [PATCH 069/160] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 83015 -> 83015 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1707 -> 1707 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70874 -> 70874 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33966 -> 33966 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101504 -> 101504 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74898 -> 74898 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99608 -> 99608 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61290 -> 61290 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 77751 -> 77751 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82763 -> 82763 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 30067 -> 30067 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 79929 -> 79929 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69558 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/sphinx.pot | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78006 -> 78006 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9559 -> 9559 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58936 -> 58936 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63731 -> 63731 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 100 +++++++++---------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 10127 -> 10127 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 100 +++++++++---------- 103 files changed, 1914 insertions(+), 1914 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 45c7dbd0d896f2f2cb73f8f3b660dec1cb164789..3949e92e8a882f9726ed9a73c7def73b8fdddbf9 100644 GIT binary patch delta 23 ecmZp)YqZ;-Ai!m&YiO)sU|?lnu~|#tIv)T_V+JGu delta 23 ecmZp)YqZ;-Ai!m+YiyukU|?lrv{_5wIv)T_GzK03 diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 658c3498849..d5bbd734771 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-16 04:46+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "متغير" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "كائن" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1979,7 +1979,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1993,20 +1993,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "كائن" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "متغيرات" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 14c74648d704422944e7ffe70ec0027b91e8652e..afcb0911a0c4ae6d9e7777ed03f0dd9ac2e11feb 100644 GIT binary patch delta 23 fcmbPjKihu8HeN0>T|;990|P4qi_HgkZwmqdT(}2^ delta 23 fcmbPjKihu8HeN1MU1I|U0|P4~qs<3+ZwmqdT!{yP diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 862cb118bf4..b049cc336bf 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "প্যারামিটার" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "রিটার্নস" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "ফাংশন" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "ক্লাস" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -1978,7 +1978,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "এ্যট্রিবিউট" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "মডিউল" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "কিওয়ার্ড" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "অপারেটর" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "এক্সেপশন" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "স্ট্যাটমেন্ট" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "বিল্ট-ইন ফাংশন" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 2b274ef522fce35b17a5c1ee239ab548c3cb0e92..264d51dc98850cc3e365c7c261223303bb1a192e 100644 GIT binary patch delta 23 ecmaDU^ipU;F)NpuuA#Alfq|8Q#pYVpH_QNBa0fO3 delta 23 ecmaDU^ipU;F)Np;uCalFfq|8g(dJs#H_QNBK?g7Z diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 38d565bae89..2e8137286a1 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Jalajöj" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "retal jalöj" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "Ruwäch" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "wachinäq" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Retal jalöj" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 81ae7dfde6b1282fded14bc523bd894d85263af3..df88db1a3b69e3616e3be11597bbde0dc9194ec7 100644 GIT binary patch delta 23 ecmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vrací" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Typ návratové hodnoty" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "proměnná" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkce" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "třída" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -1979,7 +1979,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1993,20 +1993,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "klíčové slovo" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operátor" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "výjimka" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "příkaz" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "vestavěná funkce" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Proměnné" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index ee67befe77925849ca0d7976a0d3d8cff061a646..63d800d20f10a35f80d2c4e9ae23ce589d422c18 100644 GIT binary patch delta 23 ecmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramedrau" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "ffwythiant" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1979,7 +1979,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1993,20 +1993,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modiwl" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "allweddair" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "gweithredydd" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "gwrthrych" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "datganiad" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "ffwythiant built-in" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 5efe2477e1302d36e56ca501234c2528a3eb45f7..a30b7ccbf70f8254d94ff52f34f206a76b1e643c 100644 GIT binary patch delta 20 bcmdm)u`^?Xp#q1Yv4Vktm4U@#O9c@CN_Pd~ delta 20 bcmdm)u`^?Xp#q12nSz0Vm7&>UO9c@CN{9vH diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 9b53ff44c03..95e04154ec2 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 8ee19dc2fd119ed6d3d775dc2198c7a188c82d05..8b8785b1fb770109759e581d45ee21628c82c085 100644 GIT binary patch delta 21 dcmZ1)xioUaQYj8YV+8{PD+7zoYo&e&0svLa2Ymnl delta 21 dcmZ1)xioUaQYj7tGX(\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 5e41ae2cc2780c8cd935dfcdc751fba6baba9d08..1aa54f0700f9e9aa0312114a76904760002c5046 100644 GIT binary patch delta 25 hcmX@!!Fs%db;GPCE;C(2V+8{PD+7zoOPUrR1OR*l38er4 delta 25 hcmX@!!Fs%db;GPCE>m4&0|f&ED\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -1842,17 +1842,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Παράμετροι" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Επιστρέφει" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" @@ -1870,7 +1870,7 @@ msgid "variable" msgstr "μεταβλητή" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "συνάρτηση" @@ -1948,7 +1948,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "κλάση" @@ -1965,7 +1965,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" @@ -1980,7 +1980,7 @@ msgstr "%s() (κλάση)" msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" @@ -1994,20 +1994,20 @@ msgstr "Παράμετροι" msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "ιδιότητα" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "μονάδα" @@ -2026,121 +2026,121 @@ msgstr "διπλότυπη ετικέτα της εξίσωσης %s, άλλη msgid "Invalid math_eqref_format: %r" msgstr "Ανέγκυρο math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "λέξη κλειδί" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "τελεστής" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "αντικείμενο" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "εξαίρεση" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "δήλωση" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "ενσωματωμένη συνάρτηση" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Μεταβλητές" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "περισσότεροι από έναν στόχοι βρέθηκα για την παραπομπή %r: %s" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -2860,7 +2860,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2896,7 +2896,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2917,43 +2917,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "αδυναμία ανάλυσης ονόματος %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "αδυναμία εισαγωγής αντικειμένου %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index d0e0dc285515948481decff4f73217e2cfa27450..b671c06882319bc1fe113327f537636d1e569f1c 100644 GIT binary patch delta 23 fcmZ3@yP9{y1!gWYT|;990|P4qi_N!~FERlDSd|A# delta 23 fcmZ3@yP9{y1!gW&U1I|U0|P4~qs_ONFERlDSY`)A diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index e92766ce8fd..a54c1a5fc56 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroj" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcio" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klaso" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "%s() (klaso)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "escepto" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 2bac7e9a1503581d29f94b1e5026d1f41238a43b..87764e093018ff6b7cefc5f6b57db36721781157 100644 GIT binary patch delta 25 hcmcb$lI7M)mJPoqbD8NH8Y>tWSQ%JsW|?xW0RW2M3E%(# delta 25 hcmcb$lI7M)mJPoqbD8QI8z>kUSQ!~@W|?xW0RW1y3EBVv diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 86826cb6813..a0cd8bc5bb6 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -1846,17 +1846,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parámetros" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Devuelve" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo del valor devuelto" @@ -1874,7 +1874,7 @@ msgid "variable" msgstr "variable" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "función" @@ -1952,7 +1952,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "clase" @@ -1969,7 +1969,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" @@ -1984,7 +1984,7 @@ msgstr "%s() (clase)" msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" @@ -1998,20 +1998,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "módulo" @@ -2030,121 +2030,121 @@ msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s" msgid "Invalid math_eqref_format: %r" msgstr "No válido math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "palabra clave" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "excepción" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "sentencia" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "función incorporada" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (propiedad de %s)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descripción duplicada del objeto de %s, otra instancia en %s, utilice :noindex: para uno de ellos" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, 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.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2864,7 +2864,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2900,7 +2900,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2921,43 +2921,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "Error al analizar type_comment para %r: %s" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "referencias autosummary excluidas documento %r. Ignorado." -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, 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:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "fallo al analizar el nombre %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "fallo al importar el objeto %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: archivo no encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index d95c3b19f011713636f5d2861b9bbbbdda973bd8..fdce6f37d94e9d0ec6e4c9e2554c841eaa887ffc 100644 GIT binary patch delta 25 gcmZ42$+WJMX@j2+mzl1iv4Vktm4U_P2%j(u0Bbe}l>h($ delta 25 gcmZ42$+WJMX@j2+m#MC?fr5d7m66fr2%j(u0BZ*aj{pDw diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 56232aa3a4b..128808c07e3 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -1843,17 +1843,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameetrid" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Tagastab" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tagastustüüp" @@ -1871,7 +1871,7 @@ msgid "variable" msgstr "muutuja" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktsioon" @@ -1949,7 +1949,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klass" @@ -1966,7 +1966,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" @@ -1981,7 +1981,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" @@ -1995,20 +1995,20 @@ msgstr "Argumendid" msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribuut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "moodul" @@ -2027,121 +2027,121 @@ msgstr "võrrandil %s on topeltsilt, teine instants on %s" msgid "Invalid math_eqref_format: %r" msgstr "Vigane math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "võtmesõna" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operaator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "erind" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "lause" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "sisseehitatud funktsioon" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Muutujad" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (iganenud)" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2897,7 +2897,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "tõrge objekti %s importimisel" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 3300b8d1984ff0b81237d3f92e68de7e3a800fd3..53d10bbac285413a24c2efff4cdd22f837cbc42e 100644 GIT binary patch delta 21 ccmexw^50}bumFdlv4Vktm4U_PXaN;209BI)Q~&?~ delta 21 ccmexw^50}bumFdFnSz0Vm7&?@XaN;209B<1RR910 diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 463630ae232..cd2c85ad894 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index de37012184a2dc2759aa78f0414c2627d632f992..a72bb6f5de2ca6dbe86b6ea5609d7f58a814edf9 100644 GIT binary patch delta 25 hcmZpe$<{EFZA01$E;C(2V+8{PD+7zo1uF!e003{G2(JJD delta 25 hcmZpe$<{EFZA01$E>m4&0|f&ED\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -1843,17 +1843,17 @@ msgid "" msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است." #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "پارامترها" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "بازگشت ها" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "نوع برگشتی" @@ -1871,7 +1871,7 @@ msgid "variable" msgstr "متغیّر" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "تابع" @@ -1949,7 +1949,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "کلاس" @@ -1966,7 +1966,7 @@ msgstr "مؤلّفه‌ی قالب" msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" @@ -1981,7 +1981,7 @@ msgstr "%s (کلاس)" msgid "%s (global variable or constant)" msgstr "%s (متغیّر عمومی یا مقدار ثابت)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" @@ -1995,20 +1995,20 @@ msgstr "نشانوندها" msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "متد" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "داده" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "مشخّصه" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "ماژول" @@ -2027,121 +2027,121 @@ msgstr "بر چسب معادله ی %s تکرار است، مورد دیگر د msgid "Invalid math_eqref_format: %r" msgstr "قالب مرجع معادله‌‌ی ریاضی (math_eqref_format) نامعتبر: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "کلمه کلیدی" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "عملگر" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "شیء" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "ایراد" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "گذاره" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "توابع درونی" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "متغیر ها" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s شگرد کلاس)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s()(%s ویژگی)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "%s(%sویژگی)" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "نمایه ی ماژول های پایتون" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "class method" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "متد استاتیک" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "ویژگی" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "توضیح تکراری شیئ %s، نمونه‌ی دیگر در %s قرار دارد، برای یک مورد از :noindex: استفاده کنید" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "برای ارجاع متقابل %r بیش از یک هدف پیدا شد: %s" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (منسوخ)" @@ -2861,7 +2861,7 @@ msgid "" msgstr "ویژگی نایاب در گزینه‌ی :members: قید شده: پیمانه‌ی:%s، ویژگی %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "شکست در دریافت امضای تابع برای %s: مؤلّفه پیدا نشد: %s" @@ -2897,7 +2897,7 @@ msgstr "شکست در دریافت امضای شگرد برای %s: مؤلّفه msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ نامعتبر در %sیدا شد و نادیده گرفته شد." -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "شکست در به روز رسانی امضا برای %r: مؤلّفه msgid "Failed to parse type_comment for %r: %s" msgstr "شکست در تحلیل نوع یادداشت برای %r: %s" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "ارجاعات خلاصه‌ی خودکار سند %r حذف کنار گذاشته. نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "خلاصه‌ی خودکار: خرده‌پرونده‌ی %r پیدا نشد. تنظیمات تولید خلاصه‌ی خودکار(autosummary_generate) را بررسی کنید." -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "خلاصه‌ی خودکار عنوان‌ٔار نیازمند گزینه‌ی :toctree: است، نادیده گرفته می‌شود." -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "خلاصه‌ی خودکار: فراخوان %s شکست خورد" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "شکست در تجزیه تحلیل نام %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "شکست در وارد کردن شیئ %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "تولید خلاصه خودکار: پرونده پیدا نشد: %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index ccf5903fb568392959ee1223255651bbd6e94c56..95be0634010458b1aabef0c58ce794144a14e606 100644 GIT binary patch delta 21 ccmaDL_CRdI88!|>V+8{PD+7zoSJ--309DZk8UO$Q delta 21 ccmaDL_CRdI88!|BGX(\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 8e3f55295fb3ff549e0da76d8db6a1c5da1dbcc7..c2a8dddd28e0efc8f894766408a697e8e5d65872 100644 GIT binary patch delta 23 fcmbPql4a6KmJJVQa2OgZ7#LU?SZsbdV`Vo0b&Cn! delta 23 fcmbPql4a6KmJJVQa2S{=7#LU?nr(hLV`Vo0b)5;{ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index a04911a1d93..ac5c54993ad 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-29 11:52+0000\n" "Last-Translator: Nicolas Friedli \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 7424c16279ed8bf050c53fe9e456ddda2ab659a6..37c4171b957e1656297f21500b8110165ce51e55 100644 GIT binary patch delta 19 acmey${FQk^2Zy1tf`NgRfyKrNsf++cF9tpU delta 19 acmey${FQk^2Zw=~f`NgRq1na>sf++cKn6bm diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 81f93ee4e57..d513107b5d3 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 0cf074189c0804e6ff1ac3e8a9991be075b52844..6a9157224fb0fdb3955bbca9b2da15c6a7d75eec 100644 GIT binary patch delta 23 fcmZ3YzC?Y)AucX6T|;990|P4qi_K@aZg2nqTM-9u delta 23 fcmZ3YzC?Y)AucXcU1I|U0|P4~qs?cyZg2nqTH*(3 diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index f8c1cd564ec..57b3f7b1c2d 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "פרמטרים" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "משתנה" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "פונקציה" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "מחלקה" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "מודול" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "מילת מפתח" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "משתנים" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index c833cc1ca3268180021fcec70ee7be594b94e595..a1436eca28c7f6bbe16a2afe37a157261cf265ca 100644 GIT binary patch delta 25 gcmbQy#WtghZ9`Khmzl1iv4Vktm4U_Pp3a`%0CI2%P5=M^ delta 25 gcmbQy#WtghZ9`Khm#MC?fr5d7m66frp3a`%0CGVINB{r; diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index f3368b8e0ac..6535a9d78b2 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -1843,17 +1843,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "मापदण्ड" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "प्रदत्त " #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "प्रदत्त प्रकार " @@ -1871,7 +1871,7 @@ msgid "variable" msgstr "चर पद" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "फंक्शन" @@ -1949,7 +1949,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "वर्ग" @@ -1966,7 +1966,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधि)" @@ -1981,7 +1981,7 @@ msgstr "%s() (वर्ग)" msgid "%s (global variable or constant)" msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s लक्षण)" @@ -1995,20 +1995,20 @@ msgstr "चर " msgid "%s (module)" msgstr "%s (प्रभाग)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "पद्धति" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "आंकड़े " -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "लक्षण" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "प्रभाग" @@ -2027,121 +2027,121 @@ msgstr "समीकरण का प्रतिरूप शीर्षक %s msgid "Invalid math_eqref_format: %r" msgstr "अमान्य math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "मुख्य-शब्द " -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "चालक" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "वस्तु" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "अपवाद " -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "वक्तव्य " -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "अंतर्निर्मित कर्म" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "चर पद " -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "उभारता है " -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "प्रभाग" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "अवमानित " -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "वर्ग विधि" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "स्थैतिक पद्धति" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "(अवमानित)" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2897,7 +2897,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "पद-विच्छेदन में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "विषय-वस्तु के आयात में असफलता: %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 6f09689d1777948c1244ff8ed04d386c9ba9f655..de581ff37090e62778c571c1d8e9b219161b60d0 100644 GIT binary patch delta 21 ccmey*{GWM38<&}`p|OI2ft7*9#tHe108%gpzW@LL delta 21 ccmey*{GWM38<(lBv4Mhtft8Wb#tHe108$4Axc~qF diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 93b397e5273..cc5a7f58408 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 524dc012ba0dd416e70f304bc30df414f97dad04..ad1f38815d264728f20e34d0def2595ffa8dea94 100644 GIT binary patch delta 25 gcmaFX&iJgIaf7x7mzl1iv4Vktm4U@(Q;m(%0B^ttuK)l5 delta 25 gcmaFX&iJgIaf7x7m#MC?fr5d7m66eAQ;m(%0B?~8sQ>@~ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index eaad67dc740..bb734ef694a 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vraća" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Vraća tip" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "varijabla" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "razred" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1978,7 +1978,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -1992,20 +1992,20 @@ msgstr "Argumenti" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2024,121 +2024,121 @@ msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "ključna riječ" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "izuzetak" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "izjava" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "ugrađen funkcije" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Varijable" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (zastarjelo)" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 7a047dc733b5f2936878835a08f3cab18c7e9a26..af03d2085ca99c9ab491b2dcb8bedef89447378c 100644 GIT binary patch delta 23 ecmewt{V#gMUMVg!T|;990|P4qi_OQS%!L7RtOyGL delta 23 ecmewt{V#gMUMVh9U1I|U0|P4~qs_;q%!L7ReFy~r diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 9bab8d479a4..604eb231776 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -1845,17 +1845,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paraméterek" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Visszatérési érték" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Visszatérés típusa" @@ -1873,7 +1873,7 @@ msgid "variable" msgstr "változó" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "függvény" @@ -1951,7 +1951,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "osztály" @@ -1968,7 +1968,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" @@ -1983,7 +1983,7 @@ msgstr "%s() (osztály)" msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" @@ -1997,20 +1997,20 @@ msgstr "Argumentum" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attribútum" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2029,121 +2029,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "kulcsszó" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operátor" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objektum" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "kivétel" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "utasítás" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "beépített függvény" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Változók" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Kivétel" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (elavult)" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,7 +2899,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 89cdfd96842ba255557a2c5d935e6f833a52c673..8029f2787e5369abbd16ac5150c033c6135bb4a0 100644 GIT binary patch delta 23 ecmaELkNMR-<_&V~9EQdU1_o9J7Ms=DT`~Z6E(nGI delta 23 ecmaELkNMR-<_&V~90q0z1_oA!W}DU8T`~Z6KnRBb diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index c1bae2c0b3f..cb12bb0766c 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 1591f14cd5c7553b924ad1a546a704c0450b490f..7c406a9f5138698b7278274480283e7525a38caf 100644 GIT binary patch delta 23 ecmaFq|I&Yhs|1&suA#Alfq|8Q#b$qrS^NNFVh1z; delta 23 ecmaFq|I&Yhs|1&+uCalFfq|8g(Pn>%S^NNFGY2jJ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index f6125cb0e70..a983a6c4a9d 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -1844,17 +1844,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Ritorna" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo di ritorno" @@ -1872,7 +1872,7 @@ msgid "variable" msgstr "variabile" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funzione" @@ -1950,7 +1950,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" @@ -1967,7 +1967,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" @@ -1982,7 +1982,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" @@ -1996,20 +1996,20 @@ msgstr "Parametri" msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attributo" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modulo" @@ -2028,121 +2028,121 @@ msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "keyword" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operatore" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "oggetto" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "eccezione" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "statement" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "funzione built-in" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variabili" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (deprecato)" @@ -2862,7 +2862,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2898,7 +2898,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2919,43 +2919,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 0f82b3b022afd9d018aba12a7321bf8340ad171d..2719f9471e1b7fffadbb688d5a114ac0698fbaa5 100644 GIT binary patch delta 25 hcmdmfpJn@fmJPoqbD8NH8Y>tWSQ%JsW|^{iHUN#q3H|^8 delta 25 hcmdmfpJn@fmJPoqbD8QI8z>kUSQ!~@W|^{iHUN#53HSg2 diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 7bcdf35bc4d..6822fe57502 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -1854,17 +1854,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "パラメータ" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "戻り値" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "戻り値の型" @@ -1882,7 +1882,7 @@ msgid "variable" msgstr "変数" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "の関数" @@ -1960,7 +1960,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "クラス" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" @@ -1992,7 +1992,7 @@ msgstr "%s() (クラス)" msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" @@ -2006,20 +2006,20 @@ msgstr "引数" msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "の属性" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "モジュール" @@ -2038,121 +2038,121 @@ msgstr "数式 %s のラベルはすでに %s で使われています" msgid "Invalid math_eqref_format: %r" msgstr "無効な math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "キーワード" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "演算子" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "オブジェクト" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "文" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "組み込み関数" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "変数" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (%s のプロパティ)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s のオブジェクト記述、 %s の他の​​インスタンスを複製し、そのうちの1つに :noindex: を使用します" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (非推奨)" @@ -2872,7 +2872,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2908,7 +2908,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2929,43 +2929,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "%rのtype_commentを解析できませんでした: %s" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary は除外したドキュメント %r を参照しています。無視されます。" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, 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:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "%sの名前を解析できませんでした " -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "%sオブジェクトをインポートできませんでした " -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: ファイルが見つかりません: %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index fd9a945c4253a58063d7b310506a530ac53aac35..fd8570f97714bb167b48bf1ec4da29aa6d756fb6 100644 GIT binary patch delta 23 fcmX@z#(KJqb;Gn39EQdU1_o9J7Mtg-SUU>\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 12e364d91e55280059bc360bff1124deb609b176..43e6568bf405bb47e7ed7d459bf540e015db0df1 100644 GIT binary patch delta 21 ccmexk{>Oa70Rav}V+8{PD+7zoCj?Bm0bVi(KL7v# delta 21 ccmexk{>Oa70RavJGX(\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index e12a24d1a72c2958ac1598a5609180f1cb3ef45b..8d7b313c590b850ddfba708294aafb7fc2859c8a 100644 GIT binary patch delta 23 fcmX@hf0lp4b!ILzT|;990|P4qi_H(2-!KCJUy=vB delta 23 fcmX@hf0lp4b!IM8U1I|U0|P4~qs\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Враќа" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Повратен тип" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "променлива" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функција" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "класа" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -1978,7 +1978,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 5c6b769cf585cafb434a85676714a335d5a6d5ad..7389c80f277288f148dcbb413fc1d26df8a73aa2 100644 GIT binary patch delta 23 ecmX?TdeC%(s34b_uA#Alfq|8Q#b$ZIMVtUroCZVy delta 23 ecmX?TdeC%(s34cAuCalFfq|8g(PnwUMVtUrZ3aF7 diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 997aa2d8365..6426ed2adea 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametere" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnere" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Retur type" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funksjon" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klasse" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" @@ -1977,7 +1977,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -1991,20 +1991,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attributt" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "nøkkelord" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "untak" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "uttrykk" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "innebygde funksjoner" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (foreldet)" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 2322fb3c8b9322118a8403c6076b447b4a5d821b..50278853fd79e232f0e3edae52f2cdd68a11bf01 100644 GIT binary patch delta 23 ecmbQ~Hq&jx5dkhUT|;990|P4qi_PZ*yoCT=*9Rm3 delta 23 ecmbQ~Hq&jx5dkh!U1I|U0|P4~qs`|8yoCT=s0SVZ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 82b91a667f5..b14e498a9ee 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Return type" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "चल" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "फन्क्सन" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "कक्षा" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" @@ -1979,7 +1979,7 @@ msgstr "%s() (कक्षा)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -1993,20 +1993,20 @@ msgstr "Arguments" msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "मडुल" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "मुख्य शब्द" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "सन्चालक" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "object" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "अपबाद" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "भनाई" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "built-in फन्क्सन" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "चलहरू" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "(deprecated)" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 45267a63037d9bba730e35248089f9d0e6c21c6f..dcb3d0a2f1e9c0fd3a55a79a6ab53c6239690065 100644 GIT binary patch delta 25 gcmdlplX1^X#tp7ITxPn4#tH@oRt6TE{dIB`0Bt=7d;kCd delta 25 gcmdlplX1^X#tp7IT&B9l1_}lSRz^mf{dIB`0BsHjb^rhX diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 38f8544edd7..3c6175b8a3c 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -1845,17 +1845,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returns" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Return type" @@ -1873,7 +1873,7 @@ msgid "variable" msgstr "variabele" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "functie" @@ -1951,7 +1951,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klasse" @@ -1968,7 +1968,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" @@ -1983,7 +1983,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" @@ -1997,20 +1997,20 @@ msgstr "Argumenten" msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attribuut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "module" @@ -2029,121 +2029,121 @@ msgstr "duplicaatlabel van formule %s, andere in %s" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "trefwoord" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "object" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "exceptie" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "statement" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "ingebouwde functie" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variabelen" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (verouderd)" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,7 +2899,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 96889e64b7c6b19b1f6a029dd1c37e9040d43905..493b956158389dc5ec7fdf653e6f13704ecdbf8f 100644 GIT binary patch delta 25 gcmezTit+O+#to@XTxPn4#tH@oRt6TE^PO0X0f|fqq5uE@ delta 25 gcmezTit+O+#to@XT&B9l1_}lSRz^mf^PO0X0f`+5oB#j- diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index ddc76d9fe44..a47794108ce 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -1843,17 +1843,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Zwraca" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Typ zwracany" @@ -1871,7 +1871,7 @@ msgid "variable" msgstr "zmienna" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcja" @@ -1949,7 +1949,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klasa" @@ -1966,7 +1966,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1981,7 +1981,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -1995,20 +1995,20 @@ msgstr "Argumenty" msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atrybut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "moduł" @@ -2027,121 +2027,121 @@ msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "słowo kluczowe" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "wyjątek" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "instrukcja" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "funkcja wbudowana" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (niezalecane)" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2897,7 +2897,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 1dc865960bd2644537aa05e874b8c9cc5c60e122..fd5802b51d4b8c240274d8ac7bd83240ffc67a0f 100644 GIT binary patch delta 21 ccmeyy{Ec}+8<&}`p|OI2ft7*9#tCVR08q9DqyPW_ delta 21 ccmeyy{Ec}+8<(lBv4Mhtft8Wb#tCVR08otvo&W#< diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 154b8907a77..08bbd397470 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 1df9de286317edf51b7b83c43d89afe5a914d0e5..cebcfe4ed598a5ff9daabf9201bcff0b2853ac96 100644 GIT binary patch delta 25 hcmdn_fo10hmJMkuxXg47%oGd^tPIUI7pyqh4*-fg3NQcw delta 25 hcmdn_fo10hmJMkuxJ-484HOIvtc;8{7pyqh4*-e!3Ml{p diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index d4b1a7a8a8d..283fec461ce 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -1845,17 +1845,17 @@ msgid "" msgstr "Declaração C duplicada, também definida em %s:%s.\nA declaração é '.. c:%s:: %s'." #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorna" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo de retorno" @@ -1873,7 +1873,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "função" @@ -1951,7 +1951,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" @@ -1968,7 +1968,7 @@ msgstr "parâmetro de modelo" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -1983,7 +1983,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -1997,20 +1997,20 @@ msgstr "Argumentos" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "módulo" @@ -2029,121 +2029,121 @@ msgstr "rótulo duplicado da equação %s, outra instância em %s" msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format inválido: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "palavra-chave" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "exceção" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "comando" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (propriedade %s )" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "%s (propriedade %s )" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "propriedade" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noindex: para um deles" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, 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.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2863,7 +2863,7 @@ msgid "" msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Falha ao obter uma assinatura de função para %s: %s" @@ -2899,7 +2899,7 @@ msgstr "Falha ao obter uma assinatura de método para %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ 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:273 +#: sphinx/ext/autosummary/__init__.py:278 #, 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:275 +#: sphinx/ext/autosummary/__init__.py:280 #, 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:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "Um autosummary com legenda requer a opção :toctree:. Ignorado." -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "autosummary: falha ao importar %s" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "falha ao analisar o nome %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "falha ao importar o objecto %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: arquivo não encontrado: %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 6dca5d54a5e3f979c60fdac9fa6f29e54130e40b..1d26a2f9c36218251ab23e74ebccc7de6366ccaa 100644 GIT binary patch delta 23 ecmbQ^Fvnp-tT30EuA#Alfq|8Q#pZP3tvmo#j|RE` delta 23 ecmbQ^Fvnp-tT30UuCalFfq|8g(dKmFtvmo#U\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorno" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo de retorno" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "variável" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "função" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -1979,7 +1979,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -1993,20 +1993,20 @@ msgstr "Parâmetros" msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "módulo" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "palavra-chave" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objecto" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "excepção" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "comando" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index b5cb42063abd3584ac148d30e167c404edcf5c3f..e90f0420351cc7e5afeb281bdf0ae47c261a0a2c 100644 GIT binary patch delta 23 ecmX@)cF1jmohX-?uA#Alfq|8Q#byuDU%UWY90wi% delta 23 ecmX@)cF1jmohX;7uCalFfq|8g(Pj_PU%UWX?FSeD diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index f4170716d64..027b112ec02 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrii" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Întoarce" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipul întors" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "variabilă" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funcție" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "clasă" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -1979,7 +1979,7 @@ msgstr "%s() (clasă)" msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1993,20 +1993,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "cuvânt cheie" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "obiect" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "excepție" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "declarație" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "funcție integrată" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variabile" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Generează" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "(învechit)" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 577795b9a3d4603cc0ed6fdff3f643bf92c779d6..e6646ed271f7a1e590d3866cc4adcf9b1e53e38c 100644 GIT binary patch delta 23 ecmX@s#CWWUaf78ihoP~8fq|8Q#b!r&RwV#iAO>Rq delta 23 ecmX@s#CWWUaf78ihk==bfq|8w*=9$1RwV#iG6rM- diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 1c6c01e2d26..16a751041ef 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 062807f0b2bd37777040b98d94dce4b79799fe7b..0e391d02c672cc7ef8544cc887e1283ab5e5d624 100644 GIT binary patch delta 21 ccmeB|>6h8CpN+%NSi!)+%D`gtaW)Tj07!%eDF6Tf delta 21 ccmeB|>6h8CpN+%7Ou@jw%Ft}{aW)Tj07#YwDgXcg diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 376bf15f4a2..d036fbaeda9 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index bc867c25ac50585fde802199e742211fbef979ad..f132f6a50dde7f598abcdee4c44428885d0a963b 100644 GIT binary patch delta 23 fcmdlspJm&8mJOcMI1G&y3=FIcEH(#DORWR|Xg>%@ delta 23 fcmdlspJm&8mJOcMI1J1b3=FIc%{B*4ORWR|Xi*4B diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 93a2cc49909..9f8e0e847fb 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index b8a24138d941596418afd3f1a03271aa80690ef2..18e45f5901b5e5d44e9d6972d3a9b1e531d8d5d0 100644 GIT binary patch delta 23 ecmeyM^+9WcDKD3quA#Alfq|8Q#b$e6Lk<92Zw68T delta 23 ecmeyM^+9WcDKD3)uCalFfq|8g(Pn#ILk<92Kn6?z diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 7c1d9df3030..01d149df115 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vrne" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Vrne tip" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "razred" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -1977,7 +1977,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "ključna beseda" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "izjema" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "izjava" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "vgrajene funkcije" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (zastarelo)" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index ae10cd1e600..f2841a08cc6 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 3f3c38679cff1181668b6f848a2ca2361a40fd4e..44cf7169c645d9ef9d054d28679613d55258b1da 100644 GIT binary patch delta 25 hcmdn?kY(FLmJMGQa+&EGm?;<-SQ(ma{=aa09{`f13kd)K delta 25 hcmdn?kY(FLmJMGQa+&HH8z>kUSQ!~@{=aa09{`eL3jzQD diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index cd596f005f7..8f658a6e60e 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 16:11+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "Deklarim C i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. c:%s:: %s'." #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametra" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Kthime" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Lloj kthimi" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "ndryshore" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funksion" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klasë" @@ -1963,7 +1963,7 @@ msgstr "parametër gjedheje" msgid "%s() (built-in function)" msgstr "%s() (funksion i brendshëm)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (metodë %s)" @@ -1978,7 +1978,7 @@ msgstr "%s() (klasë)" msgid "%s (global variable or constant)" msgstr "%s ( ndryshore globale ose konstante)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -1992,20 +1992,20 @@ msgstr "Argumente" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metodë" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "të dhëna" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2024,121 +2024,121 @@ msgstr "etiketë e përsëdytur ekuacioni %s, instancë tjetër te %s" msgid "Invalid math_eqref_format: %r" msgstr "math_eqref_format i pavlefshëm: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "fjalëkyç" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "përjashtim" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "deklarim" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "funksion i brendshëm" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Ndryshore" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (te moduli %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (te moduli %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (ndryshore e brendshme)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (klasë e brendshme)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klasë te %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metodë klase %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (veti %s)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metodë statike %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "%s (veti %s)" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Tregues Modulesh Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Nxjerrë nga përdorimi" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "metodë klase" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "metodë statike" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "veti" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "përshkrim i përsëdytur objekti për %s, instancë tjetër te %s, përdorni :noindex: për një prej tyre" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, 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.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (nxjerrë nga përdorimi)" @@ -2858,7 +2858,7 @@ msgid "" msgstr "u përmend atribut që mungon në :members: mundësi: modul %s, atributi %s" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "S’u arrit të merret një nënshkrim funksioni për %s: %s" @@ -2894,7 +2894,7 @@ msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ 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:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "vetëpërmbledhje: s’u arrit të importohej %s" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "s’u arrit të përtypej emri %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "s’u arrit të importohej objekti %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate: s’u gjet kartelë: %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 888f2432ee438b863fbf15c47307cd4294faba36..7110cc4639c8ed284b6223992edecb631f6a8556 100644 GIT binary patch delta 23 ecmccab=_-&pfH!2uA#Alfq|8Q#b#+?8zBH$;|4hZ delta 23 ecmccab=_-&pfH!IuCalFfq|8g(Pn938zBH$v<5Q( diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 96309e13ee7..33170c32bf8 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -1841,17 +1841,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Резултат" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Тип резултата" @@ -1869,7 +1869,7 @@ msgid "variable" msgstr "променљива" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функција" @@ -1947,7 +1947,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "класа" @@ -1964,7 +1964,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (уграђена функција)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метода)" @@ -1979,7 +1979,7 @@ msgstr "%s() (класа)" msgid "%s (global variable or constant)" msgstr "%s (глобална променљива или константа)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -1993,20 +1993,20 @@ msgstr "Аргументи" msgid "%s (module)" msgstr "%s (модул)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "метода" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "модул" @@ -2025,121 +2025,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "кључна реч" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "оператор" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "објекат" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "изузетак" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "наредба" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "уграђена функција" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Променљиве" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (у модулу %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (у модулу %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (уграђена променљива)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (уграђена класа)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (класа у %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метода класе %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статичка метода %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Застарело" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "метода класе" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "статичка метода" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2859,7 +2859,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2895,7 +2895,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2916,43 +2916,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index e67510334c46d1770db45870a023675d6d7a8867..cb336d448af6a5224d5a932d59b861ec6c008687 100644 GIT binary patch delta 19 acmcb}a*<_12Zy1tf`NgRfyKrN2N?lC`36(~ delta 19 acmcb}a*<_12Zw=~f`NgRq1na>2N?lD3I\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 785186ef4fd2e971bcbab39d701873887f86d674..cd52c42992ddaf9f2ee6b955d421210d9919fb42 100644 GIT binary patch delta 21 ccmX@Za)xC>8<&}`p|OI2ft7*9#tC~E0ZRA=r~m)} delta 21 ccmX@Za)xC>8<(lBv4Mhtft8Wb#tC~E0ZPvXq5uE@ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 8104561bc1c..170ac34a190 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index b1f0faeec1a862664d1dfe42bab2b68593caf65a..aadf80499a2a970c1edf0810a025fa042e896210 100644 GIT binary patch delta 23 ecmdmFy2*6IcL6RlT|;990|P4qi_MIJ8#w`Bfd=>h delta 23 ecmdmFy2*6IcL6R_U1I|U0|P4~qs@$h8#w`BQU>w> diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 501377f99c4..c73f0762688 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrar" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnerar" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Returtyp" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktion" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "klass" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -1977,7 +1977,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -1991,20 +1991,20 @@ msgstr "Argument" msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modul" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "nyckelord" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "undantag" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "uttryck" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "inbyggda funktioner" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 7113d210c135e9333303fbeaaba5230640dfec0f..95c2cb44b2135ab1008d3c27c2b1f7099d4f84a7 100644 GIT binary patch delta 21 dcmey)@||VE7A`YgLt_O411kfIjr(>o0svJM2Uh?9 delta 21 dcmey)@||VE7A{j=V*>>P11lq=jr(>o0svI&2T=e3 diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index d71e6e14238..ae4fae68cf8 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1978,7 +1978,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1992,20 +1992,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index a0ed5ce4304f3b70b8d91215b787586f8cd9564f..93b901f4667b8765ec9ce815c65506818e5223e9 100644 GIT binary patch delta 21 ccmeyw{E2x&8<&}`p|OI2ft7*9#tBJ`08kDFm;e9( delta 21 ccmeyw{E2x&8<(lBv4Mhtft8Wb#tBJ`08ixxk^lez diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 29620f809e1..f8d78cae1f5 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 3b6d10942d31545ea2b46bb7ee804240951df5fb..6cfe79f5a8012980cb46e580045ea0e5513e4cb5 100644 GIT binary patch delta 25 hcmdmShIz*s<_#-rxy*D8jTH\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -1843,17 +1843,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametreler" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Dönüşler" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Dönüş türü" @@ -1871,7 +1871,7 @@ msgid "variable" msgstr "değişkeni" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "işlevi" @@ -1949,7 +1949,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "sınıfı" @@ -1966,7 +1966,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (yerleşik işlev)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s yöntemi)" @@ -1981,7 +1981,7 @@ msgstr "%s() (sınıf)" msgid "%s (global variable or constant)" msgstr "%s (genel değişken veya sabit)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s özniteliği)" @@ -1995,20 +1995,20 @@ msgstr "Bağımsız Değişkenler" msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "yöntemi" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "özniteliği" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "modülü" @@ -2027,121 +2027,121 @@ msgstr "%s denkleminin kopya etiketi, %s içindeki diğer örnek" msgid "Invalid math_eqref_format: %r" msgstr "Geçersiz math_eqref_format: %r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "anahtar kelime" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "işleç" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "nesne" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "özel durum" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "ifade" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "yerleşik işlev" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Değişkenler" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Harekete geçirir" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (yerleşik değişken)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (yerleşik sınıf)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içindeki sınıf)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf yöntemi)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (%s özelliği)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s sabit yöntemi)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "modülleri" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Kullanım dışı" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "sınıf yöntemi" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "sabit yöntemi" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "%s kopya nesne açıklaması, %s içindeki diğer örnek, bunlardan biri için :noindex: kullanın" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, 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.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (kullanım dışı)" @@ -2861,7 +2861,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2897,7 +2897,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2918,43 +2918,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index db84d4ae470f4de04e48a3521aad53ab1ddb9c43..9890f49ac7ed0b6fa3eb5ea955c01b682dcb30bc 100644 GIT binary patch delta 21 ccmeys{DFBw8<&}`ftiAVft8`z#t8|G08h&XlK=n! delta 21 ccmeys{DFBw8<(lBv4Mhtft8Wb#t8|G08fzyi~s-t diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index ee2397930cb..0b83c38058a 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -1839,17 +1839,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "" @@ -1867,7 +1867,7 @@ msgid "variable" msgstr "" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1945,7 +1945,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "" @@ -1962,7 +1962,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -1991,20 +1991,20 @@ msgstr "" msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "" @@ -2023,121 +2023,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "" @@ -2857,7 +2857,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2893,7 +2893,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2914,43 +2914,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 1669ddefd4de9c7cd4fbab08c8cc0938326a1965..1a3a52a705adbd89f41b4b02b6bf8ff4ed796f97 100644 GIT binary patch delta 23 fcmX@7cTR7^d|oayT|;990|P4qi_I%}mvRCCU_=LB delta 23 fcmX@7cTR7^d|ob7U1I|U0|P4~qs=RMmvRCCU=;^h diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 8e16d497c6c..9559617e8bd 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -1840,17 +1840,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Tham số" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Trả về" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "Kiểu trả về" @@ -1868,7 +1868,7 @@ msgid "variable" msgstr "biến" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "hàm" @@ -1946,7 +1946,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "lớp" @@ -1963,7 +1963,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" @@ -1978,7 +1978,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:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" @@ -1992,20 +1992,20 @@ msgstr "Đối số" msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "thuộc tính" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "mô-đun" @@ -2024,121 +2024,121 @@ msgstr "" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "từ khoá" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "toán tử" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "ngoại lệ" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "câu lệnh" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "hàm dựng sẵn" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -2858,7 +2858,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2894,7 +2894,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2915,43 +2915,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 59077901f8327c845711b5cdcdeff7fe99af4d9a..09105dcec867c1fad5a5c890604b9b2e0d31f4b4 100644 GIT binary patch delta 25 hcmezTk@@pS<_(7?bD8NH8Y>tWSQ%JsJ~LT86#$v13S|HQ delta 25 hcmezTk@@pS<_(7?bD8QI8z>kUSQ!~@J~LT86#$ud3SR&K diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index fd4a55fd5ad..1aa20a80f92 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-13 00:08+0000\n" "PO-Revision-Date: 2021-05-16 04:38+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -1854,17 +1854,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "参数" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "返回" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "返回类型" @@ -1882,7 +1882,7 @@ msgid "variable" msgstr "变量" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "函数" @@ -1960,7 +1960,7 @@ msgid "%s (C++ %s)" msgstr "%s (C++ %s)" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "类" @@ -1977,7 +1977,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" @@ -1992,7 +1992,7 @@ msgstr "%s() (类)" msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" @@ -2006,20 +2006,20 @@ msgstr "参数" msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "属性" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "模块" @@ -2038,121 +2038,121 @@ msgstr "重复的公式标签 %s,另一实例出现在 %s" msgid "Invalid math_eqref_format: %r" msgstr "无效的 math_eqref_format:%r" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "关键字" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "运算符" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "对象" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "语句" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "內置函数" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "变量" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "%s() (%s 所有权)" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "重复的对象描述%s ,另一实例出现在使用 noindex 中:对它们其中的一个 %s" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr " (已移除)" @@ -2872,7 +2872,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2908,7 +2908,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2929,43 +2929,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "autosummary 引用了排除的文档 %r。已忽略。" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "autosummary:无法找到根文件 %r。检查你的 autosummary_generate 设置。" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "无法解析名称 %s" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "无法导入对象 %s" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "autosummary_generate:无法找到文件 %s" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 383a1ca56ce39c1c4dffa55e8e36c8ce5716e10c..cbb303058a1d140a842d364415aef341e237ca42 100644 GIT binary patch delta 23 ecmeD8@Au!}Bgti^Yhb2eU|?lvwmD4Fk`Dk==LRnT delta 23 ecmeD8@Au!}Bgti|YiyukU|?lrv^h-Dk`Dk=rUobg diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index a079348b204..ef2fa70bbd5 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-05-30 00:22+0000\n" +"POT-Creation-Date: 2021-06-06 00:16+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -1845,17 +1845,17 @@ msgid "" msgstr "" #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 -#: sphinx/domains/python.py:369 sphinx/ext/napoleon/docstring.py:736 +#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "參數" #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 -#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:381 +#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "傳回" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 -#: sphinx/domains/python.py:383 +#: sphinx/domains/python.py:403 msgid "Return type" msgstr "傳回型態" @@ -1873,7 +1873,7 @@ msgid "variable" msgstr "變數" #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 -#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1090 +#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "函式" @@ -1951,7 +1951,7 @@ msgid "%s (C++ %s)" msgstr "" #: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 -#: sphinx/domains/python.py:1092 +#: sphinx/domains/python.py:1109 msgid "class" msgstr "類別" @@ -1968,7 +1968,7 @@ msgstr "" msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:764 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" @@ -1983,7 +1983,7 @@ msgstr "%s() (類別)" msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:825 +#: sphinx/domains/javascript.py:143 sphinx/domains/python.py:842 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" @@ -1997,20 +1997,20 @@ msgstr "引數" msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1094 +#: sphinx/domains/javascript.py:327 sphinx/domains/python.py:1111 msgid "method" msgstr "成員函式" -#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1091 +#: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1097 +#: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" msgstr "屬性" -#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:57 -#: sphinx/domains/python.py:1099 +#: sphinx/domains/javascript.py:331 sphinx/domains/python.py:58 +#: sphinx/domains/python.py:1116 msgid "module" msgstr "模組" @@ -2029,121 +2029,121 @@ msgstr "重覆公式標籤 %s,亦出現於 %s" msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/python.py:58 +#: sphinx/domains/python.py:59 msgid "keyword" msgstr "關鍵字" -#: sphinx/domains/python.py:59 +#: sphinx/domains/python.py:60 msgid "operator" msgstr "運算子" -#: sphinx/domains/python.py:60 +#: sphinx/domains/python.py:61 msgid "object" msgstr "物件" -#: sphinx/domains/python.py:61 sphinx/domains/python.py:1093 +#: sphinx/domains/python.py:62 sphinx/domains/python.py:1110 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:62 +#: sphinx/domains/python.py:63 msgid "statement" msgstr "陳述式" -#: sphinx/domains/python.py:63 +#: sphinx/domains/python.py:64 msgid "built-in function" msgstr "內建函式" -#: sphinx/domains/python.py:374 +#: sphinx/domains/python.py:394 msgid "Variables" msgstr "變數" -#: sphinx/domains/python.py:378 +#: sphinx/domains/python.py:398 msgid "Raises" msgstr "丟出" -#: sphinx/domains/python.py:601 sphinx/domains/python.py:736 +#: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:655 sphinx/domains/python.py:821 -#: sphinx/domains/python.py:861 +#: sphinx/domains/python.py:672 sphinx/domains/python.py:838 +#: sphinx/domains/python.py:878 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:657 +#: sphinx/domains/python.py:674 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:681 +#: sphinx/domains/python.py:698 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:682 +#: sphinx/domains/python.py:699 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:741 +#: sphinx/domains/python.py:758 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別成員)" -#: sphinx/domains/python.py:743 +#: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:762 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態成員)" -#: sphinx/domains/python.py:865 +#: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" msgstr "" -#: sphinx/domains/python.py:1019 +#: sphinx/domains/python.py:1036 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:1020 +#: sphinx/domains/python.py:1037 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:1069 +#: sphinx/domains/python.py:1086 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:1095 +#: sphinx/domains/python.py:1112 msgid "class method" msgstr "類別成員" -#: sphinx/domains/python.py:1096 +#: sphinx/domains/python.py:1113 msgid "static method" msgstr "靜態成員" -#: sphinx/domains/python.py:1098 +#: sphinx/domains/python.py:1115 msgid "property" msgstr "" -#: sphinx/domains/python.py:1156 +#: sphinx/domains/python.py:1173 #, python-format msgid "" "duplicate object description of %s, other instance in %s, use :noindex: for " "one of them" msgstr "" -#: sphinx/domains/python.py:1276 +#: sphinx/domains/python.py:1293 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:1330 +#: sphinx/domains/python.py:1347 msgid " (deprecated)" msgstr "(已棄用)" @@ -2863,7 +2863,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1296 sphinx/ext/autodoc/__init__.py:1370 -#: sphinx/ext/autodoc/__init__.py:2656 +#: sphinx/ext/autodoc/__init__.py:2683 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,7 +2899,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2699 +#: sphinx/ext/autodoc/__init__.py:2726 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2920,43 +2920,43 @@ msgstr "" msgid "Failed to parse type_comment for %r: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:273 +#: sphinx/ext/autosummary/__init__.py:278 #, python-format msgid "autosummary references excluded document %r. Ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:275 +#: sphinx/ext/autosummary/__init__.py:280 #, python-format msgid "" "autosummary: stub file not found %r. Check your autosummary_generate " "setting." msgstr "" -#: sphinx/ext/autosummary/__init__.py:294 +#: sphinx/ext/autosummary/__init__.py:299 msgid "A captioned autosummary requires :toctree: option. ignored." msgstr "" -#: sphinx/ext/autosummary/__init__.py:341 +#: sphinx/ext/autosummary/__init__.py:346 #, python-format msgid "autosummary: failed to import %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:355 +#: sphinx/ext/autosummary/__init__.py:360 #, python-format msgid "failed to parse name %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:360 +#: sphinx/ext/autosummary/__init__.py:365 #, python-format msgid "failed to import object %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:750 +#: sphinx/ext/autosummary/__init__.py:755 #, python-format msgid "autosummary_generate: file not found: %s" msgstr "" -#: sphinx/ext/autosummary/__init__.py:758 +#: sphinx/ext/autosummary/__init__.py:763 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." From 5c98b9fa7ca52fd8e728771d36bcc49720b07a6e Mon Sep 17 00:00:00 2001 From: Junya Fukuda Date: Sun, 13 Jun 2021 15:22:32 +0900 Subject: [PATCH 070/160] Fix mypy violations (Third-party Library Stubs) (with mypy-0.900) --- setup.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b669afc00e3..817b5e87194 100644 --- a/setup.py +++ b/setup.py @@ -44,8 +44,11 @@ 'lint': [ 'flake8>=3.5.0', 'isort', - 'mypy>=0.800', + 'mypy>=0.900', 'docutils-stubs', + "types-typed-ast", + "types-pkg_resources", + "types-requests", ], 'test': [ 'pytest', From a8771f40676c1810cb56b72125d3ad95d846d784 Mon Sep 17 00:00:00 2001 From: Junya Fukuda Date: Sun, 13 Jun 2021 16:05:09 +0900 Subject: [PATCH 071/160] Fix mypy violations (delete type: ignore ) (with mypy-0.900) --- sphinx/util/logging.py | 6 +++--- sphinx/util/typing.py | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index 64b7d8fb436..63bc5ab6271 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -573,13 +573,13 @@ def setup(app: "Sphinx", status: IO, warning: IO) -> None: for handler in logger.handlers[:]: logger.removeHandler(handler) - info_handler = NewLineStreamHandler(SafeEncodingWriter(status)) # type: ignore + info_handler = NewLineStreamHandler(SafeEncodingWriter(status)) info_handler.addFilter(InfoFilter()) info_handler.addFilter(InfoLogRecordTranslator(app)) info_handler.setLevel(VERBOSITY_MAP[app.verbosity]) info_handler.setFormatter(ColorizeFormatter()) - warning_handler = WarningStreamHandler(SafeEncodingWriter(warning)) # type: ignore + warning_handler = WarningStreamHandler(SafeEncodingWriter(warning)) warning_handler.addFilter(WarningSuppressor(app)) warning_handler.addFilter(WarningLogRecordTranslator(app)) warning_handler.addFilter(WarningIsErrorFilter(app)) @@ -587,7 +587,7 @@ def setup(app: "Sphinx", status: IO, warning: IO) -> None: warning_handler.setLevel(logging.WARNING) warning_handler.setFormatter(ColorizeFormatter()) - messagelog_handler = logging.StreamHandler(LastMessagesWriter(app, status)) # type: ignore + messagelog_handler = logging.StreamHandler(LastMessagesWriter(app, status)) messagelog_handler.addFilter(InfoFilter()) messagelog_handler.setLevel(VERBOSITY_MAP[app.verbosity]) messagelog_handler.setFormatter(ColorizeFormatter()) diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index 957f8a33269..af2dc180b68 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -223,13 +223,13 @@ def _restify_py36(cls: Optional[Type]) -> str: else: reftext = ':class:`%s`' % qualname - if cls.__args__ is None or len(cls.__args__) <= 2: # type: ignore # NOQA - params = cls.__args__ # type: ignore - elif cls.__origin__ == Generator: # type: ignore - params = cls.__args__ # type: ignore + if cls.__args__ is None or len(cls.__args__) <= 2: + params = cls.__args__ + elif cls.__origin__ == Generator: + params = cls.__args__ else: # typing.Callable - args = ', '.join(restify(arg) for arg in cls.__args__[:-1]) # type: ignore - result = restify(cls.__args__[-1]) # type: ignore + args = ', '.join(restify(arg) for arg in cls.__args__[:-1]) + result = restify(cls.__args__[-1]) return reftext + '\\ [[%s], %s]' % (args, result) if params: From 519cc078fdedd848e798a6ee3176c59b0f7da97e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 13 Jun 2021 15:46:22 +0900 Subject: [PATCH 072/160] Revert the removal of sphinx.util:force_decode() After the release of 4.0.0, some 3rd party extensions have became not working with the latest Sphinx because `force_decode()` function was removed. It was deprecated since Sphinx-2.0 and warned for the removal since 3.0. This reverts the removal and extends its deprecation period to 5.0.0. I hope it helps users of these extensions. --- CHANGES | 3 +++ doc/extdev/deprecated.rst | 2 +- sphinx/util/__init__.py | 17 +++++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 5b890fe8420..3739db03572 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,9 @@ Deprecated Features added -------------- +* Revert the removal of ``sphinx.util:force_decode()`` to become some 3rd party + extensions available again during 5.0 + Bugs fixed ---------- diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index 9e17b9fb4f0..e37c2b2ba4b 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -1015,7 +1015,7 @@ The following is a list of deprecated interfaces. * - ``sphinx.util.force_decode()`` - 2.0 - - 4.0 + - 5.0 - N/A * - ``sphinx.util.get_matching_docs()`` diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index 7e24909ee83..170c554d77b 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -337,6 +337,23 @@ def parselinenos(spec: str, total: int) -> List[int]: return items +def force_decode(string: str, encoding: str) -> str: + """Forcibly get a unicode string out of a bytestring.""" + warnings.warn('force_decode() is deprecated.', + RemovedInSphinx50Warning, stacklevel=2) + if isinstance(string, bytes): + try: + if encoding: + string = string.decode(encoding) + else: + # try decoding with utf-8, should only work for real UTF-8 + string = string.decode() + except UnicodeError: + # last resort -- can't fail + string = string.decode('latin1') + return string + + def rpartition(s: str, t: str) -> Tuple[str, str]: """Similar to str.rpartition from 2.5, but doesn't return the separator.""" warnings.warn('rpartition() is now deprecated.', RemovedInSphinx50Warning, stacklevel=2) From e7e92d31544b9e6e3b1ecf0e203b95f5a454d525 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 13 Jun 2021 17:29:52 +0900 Subject: [PATCH 073/160] Update CHANGES for PR #9313 --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index b5011d71847..6710a63a5a3 100644 --- a/CHANGES +++ b/CHANGES @@ -16,7 +16,7 @@ Features added Bugs fixed ---------- -* 9313: LaTeX: complex table with merged cells broken since 4.0 +* #9313: LaTeX: complex table with merged cells broken since 4.0 Testing -------- From 9dbf2c9a982546a551a5a75083f1b20cb4e5d3dc Mon Sep 17 00:00:00 2001 From: jfbu Date: Sun, 13 Jun 2021 12:29:39 +0200 Subject: [PATCH 074/160] Closes: #9321 (LaTeX utf8x usage doc) --- doc/latex.rst | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/doc/latex.rst b/doc/latex.rst index 6e2a34c3b45..03221201db5 100644 --- a/doc/latex.rst +++ b/doc/latex.rst @@ -282,7 +282,29 @@ Keys that don't need to be overridden unless in special cases are: "inputenc" package inclusion. Default: ``'\\usepackage[utf8]{inputenc}'`` when using pdflatex, else - ``''`` + ``''``. + + .. note:: + + If using ``utf8x`` in place of ``utf8`` it is mandatory to extend the + LaTeX preamble with suitable ``\PreloadUnicodePage{}`` commands, + as per the ``utf8x`` documentation (``texdoc ucs`` on a TeXLive based + TeX installation). Else, unexpected and possibly hard-to-spot problems + (i.e. not causing a build crash) may arise in the PDF, in particular + regarding hyperlinks. + + Even if these precautions are taken, PDF build via ``pdflatex`` engine + may crash due to upstream LaTeX not being fully compatible with + ``utf8x``. For example, in certain circumstances related to + code-blocks, or attempting to include images whose filenames contain + Unicode characters. Indeed, starting in 2015, upstream LaTeX with + ``pdflatex`` engine has somewhat enhanced native support for Unicode and + is becoming more and more incompatible with ``utf8x``. In particular, + since the October 2019 LaTeX release, filenames can use Unicode + characters, and even spaces. At Sphinx level this means e.g. that the + :dudir:`image` and :dudir:`figure` directives are now compatible with + such filenames for PDF via LaTeX output. But this is broken if + ``utf8x`` is in use. .. versionchanged:: 1.4.3 Previously ``'\\usepackage[utf8]{inputenc}'`` was used for all From c685c48f0ed391dc3cc8adfe044cb534b4792012 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 13 Jun 2021 20:07:55 +0900 Subject: [PATCH 075/160] Update CHANGES for PR #9307 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 531bdec9002..859dc3ea27a 100644 --- a/CHANGES +++ b/CHANGES @@ -39,6 +39,7 @@ Features added * #9272: autodoc: Render enum values for the default argument value better * #3257: autosummary: Support instance attributes for classes * #9129: html search: Show search summaries when html_copy_source = False +* #9307: html search: Prevent corrections and completions in search field * #9120: html theme: Eliminate prompt characters of code-block from copyable text * #9176: i18n: Emit a debug message if message catalog file not found under From e05cef574b8f23ab1b57f57e7da6dee509a4e230 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 13 Jun 2021 20:27:59 +0900 Subject: [PATCH 076/160] Update CHANGES for PR #9317 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 859dc3ea27a..7e865801719 100644 --- a/CHANGES +++ b/CHANGES @@ -65,6 +65,7 @@ Bugs fixed * #9250: autodoc: The inherited method not having docstring is wrongly parsed * #9283: autodoc: autoattribute directive failed to generate document for an attribute not having any comment +* #9317: html: Pushing left key causes visiting the next page at the first page * #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct From 2de7c35573f557798fc65c17c8830178321c0a78 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 13 Jun 2021 23:11:47 +0900 Subject: [PATCH 077/160] Fix #9322: KeyError is raised on PropagateDescDomain transform PropageteDescDomain applies the domain name from the "domain" attribute of parent node (desc node) to the desc_signature node. The structure has longly generated by ObjectDescription. But it must not be a new rule. This allows to build document that contains non standard doctree. --- CHANGES | 1 + sphinx/transforms/post_transforms/__init__.py | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 6710a63a5a3..73808f7c0fc 100644 --- a/CHANGES +++ b/CHANGES @@ -17,6 +17,7 @@ Bugs fixed ---------- * #9313: LaTeX: complex table with merged cells broken since 4.0 +* #9322: KeyError is raised on PropagateDescDomain transform Testing -------- diff --git a/sphinx/transforms/post_transforms/__init__.py b/sphinx/transforms/post_transforms/__init__.py index dde06fae1be..7f4b3e3a691 100644 --- a/sphinx/transforms/post_transforms/__init__.py +++ b/sphinx/transforms/post_transforms/__init__.py @@ -249,7 +249,8 @@ class PropagateDescDomain(SphinxPostTransform): def run(self, **kwargs: Any) -> None: for node in self.document.traverse(addnodes.desc_signature): - node['classes'].append(node.parent['domain']) + if node.parent.get('domain'): + node['classes'].append(node.parent['domain']) def setup(app: Sphinx) -> Dict[str, Any]: From 7b8b3de9d1c8ee042929d0b3b5d873e58ca29415 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 13 Jun 2021 22:22:15 +0900 Subject: [PATCH 078/160] Fix #9330: versionchanged causes error during pdf build The versionchanged directive breaks doctree if its contents start with non-paragraph element (ex. lists, tables, and so on). It causes build error in LaTeX. This inserts a paragraph if the first child of the contents is not a paragraph not to break doctree. --- CHANGES | 2 ++ sphinx/domains/changeset.py | 16 ++++++++++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 6710a63a5a3..9d773318793 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* #9330: changeset domain: :rst:dir:`versionchanged` with contents being a list + will cause error during pdf build * #9313: LaTeX: complex table with merged cells broken since 4.0 Testing diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index 1b31e0248a2..81c81c2882c 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -74,8 +74,10 @@ def run(self) -> List[Node]: if self.content: self.state.nested_parse(self.content, self.content_offset, node) classes = ['versionmodified', versionlabel_classes[self.name]] - if len(node): - if isinstance(node[0], nodes.paragraph) and node[0].rawsource: + if len(node) > 0 and isinstance(node[0], nodes.paragraph): + # the contents start with a paragraph + if node[0].rawsource: + # make the first paragraph translatable content = nodes.inline(node[0].rawsource, translatable=True) content.source = node[0].source content.line = node[0].line @@ -84,10 +86,16 @@ def run(self) -> List[Node]: para = cast(nodes.paragraph, node[0]) para.insert(0, nodes.inline('', '%s: ' % text, classes=classes)) + elif len(node) > 0: + # the contents do not starts with a paragraph + para = nodes.paragraph('', '', + nodes.inline('', '%s: ' % text, classes=classes), + translatable=False) + node.insert(0, para) else: + # the contents are empty para = nodes.paragraph('', '', - nodes.inline('', '%s.' % text, - classes=classes), + nodes.inline('', '%s.' % text, classes=classes), translatable=False) node.append(para) From ef9b55c9616b957bda1431e331bb17a2edab36e2 Mon Sep 17 00:00:00 2001 From: jfbu Date: Sun, 13 Jun 2021 18:34:06 +0200 Subject: [PATCH 079/160] Fix #9305 LaTeX: backslash in sphinxupquote error with Japanese --- CHANGES | 2 ++ sphinx/texinputs/sphinxlatexliterals.sty | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 9d773318793..9a7f854e34a 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,8 @@ Bugs fixed * #9330: changeset domain: :rst:dir:`versionchanged` with contents being a list will cause error during pdf build * #9313: LaTeX: complex table with merged cells broken since 4.0 +* #9305: LaTeX: backslash may cause Improper discretionary list pdf build error + with Japanese engines Testing -------- diff --git a/sphinx/texinputs/sphinxlatexliterals.sty b/sphinx/texinputs/sphinxlatexliterals.sty index 4d0312fc653..d2ba89ea73f 100644 --- a/sphinx/texinputs/sphinxlatexliterals.sty +++ b/sphinx/texinputs/sphinxlatexliterals.sty @@ -765,7 +765,8 @@ % break at . , ; ? ! / \sphinxbreaksviaactive % break also at \ - \let\sphinx@textbackslash\textbackslash + \setbox8=\hbox{\textbackslash}% + \def\sphinx@textbackslash{\copy8}% \let\textbackslash\sphinxtextbackslash % by default, no continuation symbol on next line but may be added \let\sphinxafterbreak\sphinxafterbreakofinlineliteral From 62f128700eb41dc5158447156482a072071296dd Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 14 Jun 2021 02:17:56 +0900 Subject: [PATCH 080/160] Fix #9032: docs: sphinx.environment.NoUri was removed at v3.0.0 Our deprecation list describes `sphinx.environment.NoUri` was removed at v4.0.0. But, acutally, it was removed at v3.0.0 (#6223). --- doc/extdev/deprecated.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index c35b0525b1c..3fc665d6668 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -750,8 +750,9 @@ The following is a list of deprecated interfaces. * - ``sphinx.environment.NoUri`` - 2.1 - - 4.0 + - 3.0 - ``sphinx.errors.NoUri`` + * - ``sphinx.ext.apidoc.format_directive()`` - 2.1 - 4.0 From 6a9cc9e5ea9a8baca2e289ed1f2c925e6e610ea3 Mon Sep 17 00:00:00 2001 From: Raymond Sun Date: Mon, 14 Jun 2021 15:57:50 +1000 Subject: [PATCH 081/160] Fix flake8 errors --- sphinx/cmd/quickstart.py | 11 ++++++++++- tests/test_quickstart.py | 4 +++- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index 359355ad11b..7dfc29e192f 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -95,6 +95,12 @@ def is_path(x: str) -> str: return x +def is_path_or_empty(x: str) -> str: + if x == '': + return x + return is_path(x) + + def allow_empty(x: str) -> str: return x @@ -222,7 +228,10 @@ def ask_user(d: Dict) -> None: 'selected root path.'))) print(__('sphinx-quickstart will not overwrite existing Sphinx projects.')) print() - sys.exit(1) + d['path'] = do_prompt(__('Please enter a new root path (or just Enter to exit)'), + '', is_path_or_empty) + if not d['path']: + sys.exit(1) if 'sep' not in d: print() diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 4ee5535cb65..86c9cc6da52 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -123,6 +123,7 @@ def test_quickstart_defaults(tempdir): assert (tempdir / 'Makefile').isfile() assert (tempdir / 'make.bat').isfile() + def test_quickstart_all_answers(tempdir): answers = { 'Root path': tempdir, @@ -251,12 +252,13 @@ def test_extensions(tempdir): exec(conffile.read_text(), ns) assert ns['extensions'] == ['foo', 'bar', 'baz'] + def test_exits_upon_existing_confpy(monkeypatch): # The code detects existing conf.py with isfile() so we mock it def mock_isfile(path): return True monkeypatch.setattr(path, 'isfile', mock_isfile) - + qs.term_input = mock_input({}) d = {} with pytest.raises(SystemExit): From 9ff16979390a789aefd1585a7c97d80c51c17207 Mon Sep 17 00:00:00 2001 From: Raymond Sun Date: Mon, 14 Jun 2021 16:02:28 +1000 Subject: [PATCH 082/160] Make test more readable --- tests/test_quickstart.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 86c9cc6da52..02140cf0223 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -253,13 +253,16 @@ def test_extensions(tempdir): assert ns['extensions'] == ['foo', 'bar', 'baz'] -def test_exits_upon_existing_confpy(monkeypatch): - # The code detects existing conf.py with isfile() so we mock it +def test_exits_when_existing_confpy(monkeypatch): + # The code detects existing conf.py with path.isfile() + # so we mock it as True with pytest's monkeypatch def mock_isfile(path): return True monkeypatch.setattr(path, 'isfile', mock_isfile) - qs.term_input = mock_input({}) + qs.term_input = mock_input({ + 'Please enter a new root path (or just Enter to exit)': '' + }) d = {} with pytest.raises(SystemExit): qs.ask_user(d) From c818a70528a29dc404a9220624993dc7b96ccf88 Mon Sep 17 00:00:00 2001 From: Manuel Kaufmann Date: Mon, 14 Jun 2021 16:48:55 +0200 Subject: [PATCH 083/160] Rename variable to `html_assets_policy` --- CHANGES | 4 ++-- sphinx/application.py | 20 ++++++++++++-------- sphinx/ext/mathjax.py | 2 +- sphinx/registry.py | 3 +++ tests/test_ext_math.py | 2 +- 5 files changed, 19 insertions(+), 12 deletions(-) diff --git a/CHANGES b/CHANGES index d970b7ec66c..d688118676d 100644 --- a/CHANGES +++ b/CHANGES @@ -30,9 +30,9 @@ Features added * #9097: Optimize the paralell build * #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using regular expressions -* #9174: Add ``Sphinx.add_html_assets_in_all_pages`` to tell extensions to include +* #9174: Add ``Sphinx.set_html_assets_policy`` to tell extensions to include HTML assets in all the pages. Extensions can check this via - ``Sphinx.html_assets_in_all_pages`` + ``Sphinx.registry.html_assets_policy`` Bugs fixed diff --git a/sphinx/application.py b/sphinx/application.py index 59e1683b355..1da222d7f0b 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -146,7 +146,6 @@ def __init__(self, srcdir: str, confdir: Optional[str], outdir: str, doctreedir: self.project: Project = None self.registry = SphinxComponentRegistry() self.html_themes: Dict[str, str] = {} - self.html_assets_in_all_pages: bool = False # validate provided directories self.srcdir = abspath(srcdir) @@ -1182,13 +1181,6 @@ def add_env_collector(self, collector: Type[EnvironmentCollector]) -> None: logger.debug('[app] adding environment collector: %r', collector) collector().enable(self) - def add_html_assets_in_all_pages(self): - """Tell extensions to insert HTML assets in all the pages. - - .. versionadded: 4.1 - """ - self.html_assets_in_all_pages = True - def add_html_theme(self, name: str, theme_path: str) -> None: """Register a HTML Theme. @@ -1265,6 +1257,18 @@ def is_parallel_allowed(self, typ: str) -> bool: return True + def set_html_assets_policy(self, policy): + """Set the policy to include assets in HTML pages. + + - always: include the assets in all the pages + - per_page: include the assets only in pages where they are used + + .. versionadded: 4.1 + """ + if policy not in ('always', 'per_page'): + raise ValueError('policy %s is not supported' % policy) + self.registry.html_assets_policy = policy + class TemplateBridge: """ diff --git a/sphinx/ext/mathjax.py b/sphinx/ext/mathjax.py index 8fc63cb9ea8..46ca3b33208 100644 --- a/sphinx/ext/mathjax.py +++ b/sphinx/ext/mathjax.py @@ -79,7 +79,7 @@ def install_mathjax(app: Sphinx, pagename: str, templatename: str, context: Dict 'mathjax extension to work') domain = cast(MathDomain, app.env.get_domain('math')) - if app.html_assets_in_all_pages or domain.has_equations(pagename): + if app.registry.html_assets_policy == 'always' or domain.has_equations(pagename): # Enable mathjax only if equations exists options = {'async': 'async'} if app.config.mathjax_options: diff --git a/sphinx/registry.py b/sphinx/registry.py index cdf77cb67d8..6147a15deea 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -93,6 +93,9 @@ def __init__(self) -> None: self.html_inline_math_renderers: Dict[str, Tuple[Callable, Callable]] = {} self.html_block_math_renderers: Dict[str, Tuple[Callable, Callable]] = {} + #: HTML assets + self.html_assets_policy: str = 'per_page' + #: js_files; list of JS paths or URLs self.js_files: List[Tuple[str, Dict[str, Any]]] = [] diff --git a/tests/test_ext_math.py b/tests/test_ext_math.py index 52d49ec4308..973fc369943 100644 --- a/tests/test_ext_math.py +++ b/tests/test_ext_math.py @@ -261,7 +261,7 @@ def test_mathjax_is_not_installed_if_no_equations(app, status, warning): @pytest.mark.sphinx('html', testroot='ext-math', confoverrides={'extensions': ['sphinx.ext.mathjax']}) def test_mathjax_is_installed_if_no_equations_when_forced(app, status, warning): - app.add_html_assets_in_all_pages() + app.set_html_assets_policy('always') app.builder.build_all() content = (app.outdir / 'index.html').read_text() From 956d311809ce5e2c02b5f0a00d7f80380c90f38e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 14 Jun 2021 19:07:25 +0200 Subject: [PATCH 084/160] Fix accidental rewrap --- doc/tutorial/index.rst | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 39ce7b697fd..b8ab0a77da9 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -96,8 +96,15 @@ following content. .. code-block:: text - docs ├── build ├── make.bat ├── Makefile └── source ├── conf.py ├── - index.rst ├── _static └── _templates + docs + ├── build + ├── make.bat + ├── Makefile + └── source + ├── conf.py + ├── index.rst + ├── _static + └── _templates The purpose of each of these files is: From 95e49a1c83be4d61c7abe0fdf45b9d6d4c72797a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 14 Jun 2021 19:14:08 +0200 Subject: [PATCH 085/160] Replace non-ASCII character --- doc/tutorial/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index b8ab0a77da9..a71cb97cadd 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -156,7 +156,7 @@ Modify the file as follows: Welcome to Lumache's documentation! =================================== - **Lumache** (/luˈmake/) is a Python library for cooks and food lovers that + **Lumache** (/lu'make/) is a Python library for cooks and food lovers that creates recipes mixing random ingredients. It pulls data from the `Open Food Facts database `_ and offers a *simple* and *intuitive* API. From 9db8775ba7d9af050d545549273b003a3d36a8eb Mon Sep 17 00:00:00 2001 From: ocket8888 Date: Mon, 14 Jun 2021 11:21:28 -0600 Subject: [PATCH 086/160] Update example to use recommended usage --- doc/usage/restructuredtext/domains.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage/restructuredtext/domains.rst b/doc/usage/restructuredtext/domains.rst index dfd34732749..e4e16f7bbad 100644 --- a/doc/usage/restructuredtext/domains.rst +++ b/doc/usage/restructuredtext/domains.rst @@ -1673,7 +1673,7 @@ There is a set of directives allowing documenting command-line programs: .. program:: svn - .. option:: -r revision + .. option:: -r Specify the revision to work upon. From ce0f165baecb62ad1dd42dce54a9bf88ffb18806 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 14 Jun 2021 21:39:25 +0200 Subject: [PATCH 087/160] Fix more accidental rewrap --- doc/tutorial/index.rst | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index a71cb97cadd..5f9071526bd 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -84,11 +84,14 @@ directory and configuration layout for your project inside the ``docs`` folder. To proceed, answer each question as follows: - ``> Separate source and build directories (y/n) [n]``: Write "``y``" (without - quotes) and press :kbd:`Enter`. - ``> Project name``: Write "``Lumache``" - (without quotes) and press :kbd:`Enter`. - ``> Author name(s)``: Write - "``Graziella``" (without quotes) and press :kbd:`Enter`. - ``> Project - release []``: Write "``0.1``" (without quotes) and press :kbd:`Enter`. - ``> - Project language [en]``: Leave it empty (the default, English) and press + quotes) and press :kbd:`Enter`. +- ``> Project name``: Write "``Lumache``" (without quotes) and press + :kbd:`Enter`. +- ``> Author name(s)``: Write "``Graziella``" (without quotes) and press + :kbd:`Enter`. +- ``> Project release []``: Write "``0.1``" (without quotes) and press + :kbd:`Enter`. +- ``> Project language [en]``: Leave it empty (the default, English) and press :kbd:`Enter`. After the last question, you will see the new ``docs`` directory with the From d65acfc1cccbe416b2eb5349bf45e2c0f5b6d551 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 14 Jun 2021 22:45:12 +0200 Subject: [PATCH 088/160] Fix another accidental reflow --- doc/tutorial/index.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 5f9071526bd..681fcb6db6d 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -170,10 +170,11 @@ Modify the file as follows: This showcases several features of the reStructuredText syntax, including: -- a **section header** using ``===`` for the underline, - two examples of - :ref:`rst-inline-markup`: ``**strong emphasis**`` (typically bold) and - ``*emphasis*`` (typically italics), - an **inline external link**, - and a - ``note`` **admonition** (one of the available :ref:`directives +- a **section header** using ``===`` for the underline, +- two examples of :ref:`rst-inline-markup`: ``**strong emphasis**`` (typically + bold) and ``*emphasis*`` (typically italics), +- an **inline external link**, +- and a ``note`` **admonition** (one of the available :ref:`directives `) Now to render it with the new content, you can use the ``sphinx-build`` command From d92c111ffbe1ee4329e4c40032b7bc3ba5d63b46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 14 Jun 2021 22:45:54 +0200 Subject: [PATCH 089/160] Fix whitespace in definition list --- doc/tutorial/index.rst | 4 ---- 1 file changed, 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 681fcb6db6d..cd1a7c173d2 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -112,22 +112,18 @@ following content. The purpose of each of these files is: ``build/`` - An empty directory (for now) that will hold the rendered documentation. ``make.bat`` and ``Makefile`` - Convenience scripts to simplify some common Sphinx operations, such as rendering the content. ``source/conf.py`` - A Python script holding the configuration of the Sphinx project. It contains the project name and release you specified to ``sphinx-quickstart``, as well as some extra configuration keys. ``source/index.rst`` - The :term:`master document` of the project, which serves as welcome page and contains the root of the "table of contents tree" (or *toctree*). From 35f37a5d03e1454c5e94c74d1def39133344fec9 Mon Sep 17 00:00:00 2001 From: jfbu Date: Mon, 14 Jun 2021 22:48:04 +0200 Subject: [PATCH 090/160] Same Unicode char replaced --- doc/tutorial/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index cd1a7c173d2..993a308d3a8 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -41,7 +41,7 @@ content. Lumache ======= - **Lumache** (/luˈmake/) is a Python library for cooks and food lovers that + **Lumache** (/lu'make/) is a Python library for cooks and food lovers that creates recipes mixing random ingredients. It is a good moment to create a Python virtual environment and install the From b23eefa03b56717c4be973d5f89044517dca8f8c Mon Sep 17 00:00:00 2001 From: Martin Liska Date: Wed, 16 Jun 2021 09:21:46 +0200 Subject: [PATCH 091/160] Fix :samp:`{var}` in manual pages. When a samp begins with a variable part, it is not unwrapped for manual pages. Fixes #1860. --- sphinx/writers/manpage.py | 5 ++++- tests/roots/test-root/lists.txt | 7 +++++++ tests/test_build_manpage.py | 5 +++++ 3 files changed, 16 insertions(+), 1 deletion(-) diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index 3f0eea5eb11..95e0f5658da 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -59,13 +59,16 @@ def apply(self, **kwargs: Any) -> None: for node in self.document.traverse(matcher): # type: TextElement if any(matcher(subnode) for subnode in node): pos = node.parent.index(node) - for subnode in reversed(node[1:]): + for subnode in reversed(list(node)): node.remove(subnode) if matcher(subnode): node.parent.insert(pos + 1, subnode) else: newnode = node.__class__('', '', subnode, **node.attributes) node.parent.insert(pos + 1, newnode) + # move node if all children became siblings of the node + if not len(node): + node.parent.remove(node) class ManualPageTranslator(SphinxTranslator, BaseTranslator): diff --git a/tests/roots/test-root/lists.txt b/tests/roots/test-root/lists.txt index 1fa2d11c530..0b5445461f3 100644 --- a/tests/roots/test-root/lists.txt +++ b/tests/roots/test-root/lists.txt @@ -61,3 +61,10 @@ term1 term2 (**stronged partially**) description + +Samp tests +---------- + +:samp:`{variable_only}` +:samp:`{variable} and text` +:samp:`Show {variable} in the middle` diff --git a/tests/test_build_manpage.py b/tests/test_build_manpage.py index 0b7ce2396c9..3680d8651be 100644 --- a/tests/test_build_manpage.py +++ b/tests/test_build_manpage.py @@ -27,6 +27,11 @@ def test_all(app, status, warning): assert '\n.B term1\n' in content assert '\nterm2 (\\fBstronged partially\\fP)\n' in content + # test samp with braces + assert '\n\\fIvariable_only\\fP\n' in content + assert '\n\\fIvariable\\fP\\fB and text\\fP\n' in content + assert '\n\\fBShow \\fP\\fIvariable\\fP\\fB in the middle\\fP\n' in content + assert 'Footnotes' not in content From 5e7c011b92c5abaace7ab209e8f67b835d3893eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 16 Jun 2021 14:35:50 +0200 Subject: [PATCH 092/160] Fix broken link to third-party extensions --- doc/_templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/_templates/index.html b/doc/_templates/index.html index a688d17c174..eb2037447a2 100644 --- a/doc/_templates/index.html +++ b/doc/_templates/index.html @@ -33,7 +33,7 @@

{{ _('Welcome') }}

  • {%trans path=pathto('ext/builtins')%}Extensions: automatic testing of code snippets, inclusion of docstrings from Python modules (API docs), and more{%endtrans%}
  • -
  • {%trans path=pathto("usage/extensions")%}Contributed extensions: dozens of +
  • {%trans path=pathto("usage/extensions/index")%}Contributed extensions: dozens of extensions contributed by users; most of them installable from PyPI{%endtrans%}
  • From 1cbaf7ff302810127b4803e79a7991037aa34802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 15 Jun 2021 17:55:09 +0200 Subject: [PATCH 093/160] Minor style fixes --- doc/tutorial/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 993a308d3a8..402efbac767 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -134,7 +134,7 @@ the documentation as HTML for the first time. To do that, run this command: (.venv) $ sphinx-build -b html docs/source/ docs/build/html -And finally, open `docs/build/html/index.html` in your browser. You should see +And finally, open ``docs/build/html/index.html`` in your browser. You should see something like this: .. image:: /_static/tutorial/lumache-first-light.png @@ -145,7 +145,7 @@ Making some tweaks to the index ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The ``index.rst`` file that ``sphinx-quickstart`` created has some content -already, and it gets rendered as the front page of our HTML documentation. It +already, and it gets rendered as the front page of your HTML documentation. It is written in reStructuredText, a powerful markup language. Modify the file as follows: From 167828fde9f0a2fbea687acf08ccf397214ae6c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 15 Jun 2021 17:55:53 +0200 Subject: [PATCH 094/160] Add section about exporting to other formats --- doc/tutorial/index.rst | 52 ++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 50 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 402efbac767..996ac54cce2 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -141,8 +141,11 @@ something like this: There we go! You created your first HTML documentation using Sphinx. -Making some tweaks to the index -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +First steps to document your project using Sphinx +------------------------------------------------- + +Converting your documentation to HTML +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The ``index.rst`` file that ``sphinx-quickstart`` created has some content already, and it gets rendered as the front page of your HTML documentation. It @@ -184,6 +187,51 @@ as before, or leverage the convenience script as follows: After running this command, you will see that ``index.html`` reflects the new changes! +Exporting your documentation to other formats +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Sphinx supports a variety of formats apart from HTML, including PDF, EPUB, +:ref:`and more `. For example, to build your documentation as an +e-book in EPUB format, run this command from the ``docs`` directory: + +.. code-block:: console + + (.venv) $ make epub + +After that, you will see the files corresponding to the e-book under +``docs/build/html/``. You can either open ``Lumache.epub`` with an +EPUB-compatible e-book viewer, like `Calibre `_, +or preview ``index.xhtml`` on a web browser. + +.. note:: + + To quickly display a complete list of possible output formats, plus some + extra useful commands, you can run :code:`make help`. + +Each output format has some specific configuration options that you can tune, +:ref:`including EPUB `. For instance, the default value of +:confval:`epub_show_urls` is ``inline``, which means that, by default, URLs are +shown right after the corresponding link, in parentheses. You can change that +behavior by adding the following code at the end of your ``conf.py``: + +.. code-block:: python + + # EPUB options + epub_show_urls = 'footnote' + +With this configuration value, and after running ``make epub`` again, you will +notice that URLs appear now as footnotes, which avoids cluttering the text. +Sweet! + +.. warning:: + + Generating a PDF using Sphinx can be done running ``make latexpdf``, + provided that the system has a working :math:`\LaTeX` installation, + as explained in the documentation of :class:`sphinx.builders.latex.LaTeXBuilder`. + Although this is perfectly feasible, such installations are often big, + and in general LaTeX requires careful configuration in some cases, + so PDF generation is out of scope for this tutorial. + Where to go from here --------------------- From dc5dc61e3fe828ae1b5dafa89f060f1c5a931226 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 16 Jun 2021 16:17:38 +0200 Subject: [PATCH 095/160] Turn plain image into figure --- doc/tutorial/index.rst | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 996ac54cce2..b12e84fc183 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -137,7 +137,12 @@ the documentation as HTML for the first time. To do that, run this command: And finally, open ``docs/build/html/index.html`` in your browser. You should see something like this: -.. image:: /_static/tutorial/lumache-first-light.png +.. figure:: /_static/tutorial/lumache-first-light.png + :width: 80% + :align: center + :alt: Freshly created documentation of Lumache + + Freshly created documentation of Lumache There we go! You created your first HTML documentation using Sphinx. From 1e492189935f68653c3e7311535bd3cfb7ef6c24 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 16 Jun 2021 16:19:32 +0200 Subject: [PATCH 096/160] Add tutorial section about extensions and themes --- doc/_static/tutorial/lumache-furo.png | Bin 0 -> 51223 bytes doc/tutorial/index.rst | 71 ++++++++++++++++++++++++++ doc/usage/extensions/index.rst | 4 ++ 3 files changed, 75 insertions(+) create mode 100644 doc/_static/tutorial/lumache-furo.png diff --git a/doc/_static/tutorial/lumache-furo.png b/doc/_static/tutorial/lumache-furo.png new file mode 100644 index 0000000000000000000000000000000000000000..c7aaee796cb5561c1f853bc0d68e63a2fb0044a6 GIT binary patch literal 51223 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 YwevRYog7{`;BN^T2}SV|(a+!i2i_fLX8-^I literal 0 HcmV?d00001 diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index b12e84fc183..3b078409d41 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -237,6 +237,77 @@ Sweet! and in general LaTeX requires careful configuration in some cases, so PDF generation is out of scope for this tutorial. +More Sphinx customization using extensions +------------------------------------------ + +Enabling a built-in extension +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +In addition to these configuration values, you can customize Sphinx even more +by using :doc:`extensions <../usage/extensions/index>`. Sphinx ships several +:ref:`built-in ones `, and there are many more +:ref:`maintained by the community `. + +For example, to enable the :mod:`sphinx.ext.duration` extension, +locate the ``extensions`` list in your ``conf.py`` and add one element as +follows: + +.. code-block:: python + + # Add any Sphinx extension module names here, as strings. They can be + # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom + # ones. + extensions = [ + 'sphinx.ext.duration', + ] + +After that, every time you generate your documentation, you will see a short +durations report at the end of the console output, like this one: + +.. code-block:: console + + (.venv) $ make html + ... + The HTML pages are in build/html. + + ====================== slowest reading durations ======================= + 0.042 temp/source/index + +Using a third-party theme +~~~~~~~~~~~~~~~~~~~~~~~~~ + +Themes, on the other hand, are a particular class of extensions that allow you +to customize the appearance of your documentation. Again, Sphinx has several +:ref:`built-in themes `, and there are also third-party ones. + +For example, to use the `Furo `_ third-party theme +in your HTML documentation, first you will need to install it with ``pip`` on +your Python virtual environment, like this: + +.. code-block:: console + + (.venv) $ pip install furo + +And then, locate the ``html_theme`` variable on your ``conf.py`` and replace +its value as follows: + +.. code-block:: python + + # The theme to use for HTML and HTML Help pages. See the documentation for + # a list of builtin themes. + # + html_theme = 'alabaster' + +With this change, you will notice that your HTML documentation has now a new +appearance: + +.. figure:: /_static/tutorial/lumache-furo.png + :width: 80% + :align: center + :alt: HTML documentation of Lumache with the Furo theme + + HTML documentation of Lumache with the Furo theme + Where to go from here --------------------- diff --git a/doc/usage/extensions/index.rst b/doc/usage/extensions/index.rst index 0d446cb61a3..389d9ccbd9e 100644 --- a/doc/usage/extensions/index.rst +++ b/doc/usage/extensions/index.rst @@ -10,6 +10,8 @@ This chapter describes the extensions bundled with Sphinx. For the API documentation on writing your own extension, refer to :ref:`dev-extensions`. +.. _built-in-extensions: + Built-in extensions ------------------- @@ -38,6 +40,8 @@ These extensions are built in and can be activated by respective entries in the viewcode +.. _third-party-extensions: + Third-party extensions ---------------------- From 2058acc4f9c040a7753b3a266a575af601315f60 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 16 Jun 2021 20:57:09 +0200 Subject: [PATCH 097/160] Add local table of contents --- doc/tutorial/index.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 3b078409d41..2502bb4700f 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -27,6 +27,9 @@ a basic understanding of how it works, as well as a working Python installation for development, since you will use *Python virtual environments* to create the project. +.. contents:: Contents + :local: + Getting started --------------- From 57b0a1b4657c4612be91c61e9bca0f8fa8875d58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Wed, 16 Jun 2021 23:50:17 +0200 Subject: [PATCH 098/160] Add section about the toctree --- doc/tutorial/index.rst | 71 +++++++++++++++++++++++++++ doc/usage/restructuredtext/basics.rst | 2 + 2 files changed, 73 insertions(+) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 2502bb4700f..bd0731b8782 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -311,6 +311,77 @@ appearance: HTML documentation of Lumache with the Furo theme +Narrative documentation in Sphinx +--------------------------------- + +Inserting documents in the project hierarchy +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +As discussed at the beginning, ``index.rst`` is the :term:`master document`, +whose main function is to serve as a welcome page and to contain the root of +the "table of contents tree" (or *toctree*). Sphinx allows you to assemble +a project from different files, which is helpful when the project grows. + +As an example, create a new file ``docs/source/usage.rst`` (next to +``index.rst``) with these contents: + +.. code-block:: rest + + Usage + ===== + + Installation + ------------ + + To use Lumache, first install it using pip: + + .. code-block:: console + + (.venv) $ pip install lumache + +This new file contains two :ref:`section ` headers, normal +paragraph text, and a ``code-block`` directive that renders a block of content +as source code, with appropriate syntax highlighting (in this case, generic +``console`` text). + +.. note:: + + You can read `the list of available highlight + languages `_ in the Pygments + documentation. + +The structure of the document is determined by the succession of heading +styles, which means that, by using ``---`` for the "Installation" section +after ``===`` for the "Usage" section, you have declared "Installation" to +be a *subsection* of "Usage". + +In addition, add a ``toctree`` :ref:`directive ` at the end +of ``index.rst`` including the document you just created, +as follows: + +.. code-block:: rest + + Contents + -------- + + .. toctree:: + + usage + +This step inserts that document in the root of the *toctree*, so now it belongs +to the structure of your project. If you export the documentation to HTML +running ``make html``, you will see that the ``toctree`` gets rendered as a +list of hyperlinks, and this allows you to navigate to the new page you +just created. Neat! + +.. warning:: + + Every document should belong to a *toctree*. Otherwise, Sphinx will emit a + ``WARNING: document isn't included in any toctree``, and the end result + will depend on the builder. For the HTML builder, the page will not be + linked from anywhere (therefore it will not be discoverable), whereas for + the PDF builder, it will not be included at all. + Where to go from here --------------------- diff --git a/doc/usage/restructuredtext/basics.rst b/doc/usage/restructuredtext/basics.rst index 1c601ea2e01..d96b1fe3867 100644 --- a/doc/usage/restructuredtext/basics.rst +++ b/doc/usage/restructuredtext/basics.rst @@ -224,6 +224,8 @@ Internal linking is done via a special reST role provided by Sphinx, see the section on specific markup, :ref:`ref-role`. +.. _rst-sections: + Sections -------- From e022872f3ba5e59c965e7b9b89c9479c807426b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 17 Jun 2021 00:37:32 +0200 Subject: [PATCH 099/160] Add section about cross-references --- doc/tutorial/index.rst | 50 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index bd0731b8782..c4de85cc52b 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -382,6 +382,56 @@ just created. Neat! linked from anywhere (therefore it will not be discoverable), whereas for the PDF builder, it will not be included at all. +Adding cross-references +~~~~~~~~~~~~~~~~~~~~~~~ + +One powerful feature of Sphinx is the ability to seamlessly add +:ref:`cross-references ` to specific parts of the documentation: +a document, a section, a figure, a code object, etc. This tutorial is full of +them! + +To add a straightforward cross-reference, write this sentence right after the +introduction paragraph in ``index.rst``: + +.. code-block:: rest + + Check out the :doc:`usage` section for further information. + +The :rst:role:`doc` role you used automatically references a specific document +in the project, in this case the ``usage.rst`` you created earlier. + +Alternatively, you can also add a cross-reference to an arbitrary part of the +project. For that, you need to use the :rst:role:`ref` role, and add an +explicit *label* that can act as a target. + +For example, to reference the "Installation" subsection, add a label right +before the heading, as follows: + +.. code-block:: rest + + Usage + ===== + + .. _installation: + + Installation + ------------ + + ... + +And make the sentence you added in ``index.rst`` look like this: + +.. code-block:: rest + + Check out the :doc:`usage` section for further information, including how to + :ref:`install ` the project. + +Notice a trick here: the ``install`` part specifies how the link will look like +(we want it to be a specific word, so the sentence makes sense), whereas the +```` part refers to the actual label we want to add a +cross-reference to. Both the ``:doc:`` and the ``:ref:`` roles will be rendered +as hyperlinks in the HTML documentation. + Where to go from here --------------------- From 5a057d3da1fdae1e8393cb0fe6f7a15aa9be8b2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Thu, 17 Jun 2021 01:01:34 +0200 Subject: [PATCH 100/160] Actually use new theme --- doc/tutorial/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index c4de85cc52b..0d215424945 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -299,7 +299,7 @@ its value as follows: # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # - html_theme = 'alabaster' + html_theme = 'furo' With this change, you will notice that your HTML documentation has now a new appearance: From 50f5280603fa9c66253f13e53dd7e1b4a0263447 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Wed, 16 Jun 2021 22:08:30 +0200 Subject: [PATCH 101/160] C, keyword changes - Add new keywords from C23. - Add c_extra_keywords as confval. - Move macro names from keywords to c_extra_keywords. Fixes sphinx-doc/sphinx#9354 --- CHANGES | 6 ++++++ doc/usage/configuration.rst | 8 ++++++++ sphinx/domains/c.py | 26 ++++++++++++++++++++++---- tests/test_domain_c.py | 25 ++++++++++++++++++------- 4 files changed, 54 insertions(+), 11 deletions(-) diff --git a/CHANGES b/CHANGES index 9a7f854e34a..62e1f60ee2f 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,10 @@ Deprecated Features added -------------- +* C, add C23 keywords ``_Decimal32``, ``_Decimal64``, and ``_Decimal128``. +* #9354: C, add :confval:`c_extra_keywords` to allow user-defined keywords + during parsing. + Bugs fixed ---------- @@ -21,6 +25,8 @@ Bugs fixed * #9313: LaTeX: complex table with merged cells broken since 4.0 * #9305: LaTeX: backslash may cause Improper discretionary list pdf build error with Japanese engines +* #9354: C, remove special macro names from the keyword list. + See also :confval:`c_extra_keywords`. Testing -------- diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index a233e0fda9b..3c58da30878 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -2670,6 +2670,14 @@ Options for the C domain .. versionadded:: 3.0 +.. confval:: c_extra_keywords + + 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']``. + + .. versionadded:: 4.0.3 + .. confval:: c_allow_pre_v3 A boolean (default ``False``) controlling whether to parse and try to diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index b0711f68e98..6ebfe04c4f0 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -54,10 +54,15 @@ 'else', 'enum', 'extern', 'float', 'for', 'goto', 'if', 'inline', 'int', 'long', 'register', 'restrict', 'return', 'short', 'signed', 'sizeof', 'static', 'struct', 'switch', 'typedef', 'union', 'unsigned', 'void', 'volatile', 'while', - '_Alignas', 'alignas', '_Alignof', 'alignof', '_Atomic', '_Bool', 'bool', - '_Complex', 'complex', '_Generic', '_Imaginary', 'imaginary', - '_Noreturn', 'noreturn', '_Static_assert', 'static_assert', - '_Thread_local', 'thread_local', + '_Alignas', '_Alignof', '_Atomic', '_Bool', '_Complex', + '_Decimal32', '_Decimal64', '_Decimal128', + '_Generic', '_Imaginary', '_Noreturn', '_Static_assert', '_Thread_local', +] +# These are only keyword'y when the corresponding headers are included. +# They are used as default value for c_extra_keywords. +_macroKeywords = [ + 'alignas', 'alignof', 'bool', 'complex', 'imaginary', 'noreturn', 'static_assert', + 'thread_local', ] # these are ordered by preceedence @@ -2535,6 +2540,12 @@ def _parse_nested_name(self) -> ASTNestedName: if identifier in _keywords: self.fail("Expected identifier in nested name, " "got keyword: %s" % identifier) + if self.matched_text in self.config.c_extra_keywords: + msg = "Expected identifier, got user-defined keyword: %s." \ + + " Remove it from c_extra_keywords to allow it as identifier.\n" \ + + "Currently c_extra_keywords is %s." + self.fail(msg % (self.matched_text, + str(self.config.c_extra_keywords))) ident = ASTIdentifier(identifier) names.append(ident) @@ -2711,6 +2722,12 @@ def _parse_declarator_name_suffix( if self.matched_text in _keywords: self.fail("Expected identifier, " "got keyword: %s" % self.matched_text) + if self.matched_text in self.config.c_extra_keywords: + msg = "Expected identifier, got user-defined keyword: %s." \ + + " Remove it from c_extra_keywords to allow it as identifier.\n" \ + + "Currently c_extra_keywords is %s." + self.fail(msg % (self.matched_text, + str(self.config.c_extra_keywords))) identifier = ASTIdentifier(self.matched_text) declId = ASTNestedName([identifier], rooted=False) else: @@ -3877,6 +3894,7 @@ def setup(app: Sphinx) -> Dict[str, Any]: 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_post_transform(AliasTransform) app.add_config_value("c_allow_pre_v3", False, 'env') diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index ef4858786de..a891e18e29e 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -15,16 +15,20 @@ from sphinx import addnodes from sphinx.addnodes import desc -from sphinx.domains.c import DefinitionError, DefinitionParser, Symbol, _id_prefix, _max_id +from sphinx.domains.c import (DefinitionError, DefinitionParser, Symbol, _id_prefix, + _macroKeywords, _max_id) from sphinx.ext.intersphinx import load_mappings, normalize_intersphinx_mapping from sphinx.testing import restructuredtext from sphinx.testing.util import assert_node +class Config: + c_id_attributes = ["id_attr", 'LIGHTGBM_C_EXPORT'] + c_paren_attributes = ["paren_attr"] + c_extra_keywords = _macroKeywords + + def parse(name, string): - class Config: - c_id_attributes = ["id_attr", 'LIGHTGBM_C_EXPORT'] - c_paren_attributes = ["paren_attr"] parser = DefinitionParser(string, location=None, config=Config()) parser.allowFallbackExpressionParsing = False ast = parser.parse_declaration(name, name) @@ -114,9 +118,6 @@ def check(name, input, idDict, output=None, key=None, asTextOutput=None): def test_expressions(): def exprCheck(expr, output=None): - class Config: - c_id_attributes = ["id_attr"] - c_paren_attributes = ["paren_attr"] parser = DefinitionParser(expr, location=None, config=Config()) parser.allowFallbackExpressionParsing = False ast = parser.parse_expression() @@ -522,6 +523,16 @@ def test_attributes(): check('function', 'LIGHTGBM_C_EXPORT int LGBM_BoosterFree(int handle)', {1: 'LGBM_BoosterFree'}) + +def test_extra_keywords(): + with pytest.raises(DefinitionError, + match='Expected identifier, got user-defined keyword: complex.'): + parse('function', 'void f(int complex)') + with pytest.raises(DefinitionError, + match='Expected identifier, got user-defined keyword: complex.'): + parse('function', 'void complex(void)') + + # def test_print(): # # used for getting all the ids out for checking # for a in ids: From 13d59bc1742279d7b1c614cd45c0499f5da104f4 Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Thu, 17 Jun 2021 15:03:34 -0500 Subject: [PATCH 102/160] Provide more semantic structure for screen-readers https://www.w3.org/WAI/WCAG21/Techniques/aria/ARIA12 --- sphinx/writers/html.py | 2 +- sphinx/writers/html5.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index d633f07e8e0..e9a31a848ca 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -415,7 +415,7 @@ def depart_term(self, node: Element) -> None: # overwritten def visit_title(self, node: Element) -> None: if isinstance(node.parent, addnodes.compact_paragraph) and node.parent.get('toctree'): - self.body.append(self.starttag(node, 'p', '', CLASS='caption')) + self.body.append(self.starttag(node, 'p', '', CLASS='caption', ROLE='heading')) self.body.append('') self.context.append('

    \n') else: diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index 4696425910b..5b38b3be281 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -366,7 +366,7 @@ def depart_term(self, node: Element) -> None: # overwritten def visit_title(self, node: Element) -> None: if isinstance(node.parent, addnodes.compact_paragraph) and node.parent.get('toctree'): - self.body.append(self.starttag(node, 'p', '', CLASS='caption')) + self.body.append(self.starttag(node, 'p', '', CLASS='caption', ROLE='heading')) self.body.append('') self.context.append('

    \n') else: From 350b0682a3b07def5f29d57a88634b246b71e757 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 20 Jun 2021 00:09:14 +0000 Subject: [PATCH 103/160] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 83015 -> 83015 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1707 -> 1707 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70874 -> 70874 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33966 -> 33966 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101504 -> 101504 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74898 -> 74898 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99608 -> 99608 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61290 -> 61290 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 77751 -> 77751 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82763 -> 82763 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 30067 -> 30067 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 79929 -> 79929 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69558 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78006 -> 78006 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9559 -> 9559 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58936 -> 58936 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63731 -> 63731 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 10127 -> 10127 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 2 +- 111 files changed, 56 insertions(+), 56 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 3949e92e8a882f9726ed9a73c7def73b8fdddbf9..5af7c128af670b9fde7d386f4a1eed67736cfc10 100644 GIT binary patch delta 15 WcmZp)YqZ;-B*0{3uvtamE*}6UfCQHS delta 15 WcmZp)YqZ;-B*0{7yjexyE*}6Uiv*bf diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index d5bbd734771..f6b303a3fe6 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-16 04:46+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 1e0fa84fba7db4912040432fd24c9ae2510beb13..10f71b0c7b4dc09ba8162d8b583244f71545258c 100644 GIT binary patch delta 19 acmey${FQk^2Zxb?f`NgRfyKrNsf++c8U{Q7 delta 19 acmey${FQk^2Zw=~f`NgRq1na>sf++cKn6bm diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index f69d26e354e..954d4d7d0e0 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index afcb0911a0c4ae6d9e7777ed03f0dd9ac2e11feb..0479ccf2803dc03d50ed81e8cda4f0d47acd6f9a 100644 GIT binary patch delta 15 XcmbPjKihu84qhfBgU!2m9|{5hF^vWK delta 15 XcmbPjKihu84qhfh\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 3992632c36813520d6ce215f84dfd016ab96b061..e8af62d2ee219a1b18b65e43ab22358c4841a25a 100644 GIT binary patch delta 21 ccmbQMGgoKBVqOj-0|f&ED+7zot9gq!085|-WB>pF delta 21 ccmbQMGgoKBVqOjdGX(\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 264d51dc98850cc3e365c7c261223303bb1a192e..b9274605ba0f7af6cf8c55beaaf59275f26a5269 100644 GIT binary patch delta 15 WcmaDU^ipU;DJzqa!RB(-Ps{)@jRmOy delta 15 WcmaDU^ipU;DJzqq@#b>YPs{)@m<6i< diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 2e8137286a1..c351e10e9cf 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index df88db1a3b69e3616e3be11597bbde0dc9194ec7..d53e7a31f0d8b7b2056463f2566df8e9eafcf4e1 100644 GIT binary patch delta 15 WcmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 63d800d20f10a35f80d2c4e9ae23ce589d422c18..198e39d2661666116fad6b99a57c4642e7d466e9 100644 GIT binary patch delta 15 WcmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index a30b7ccbf70f8254d94ff52f34f206a76b1e643c..ba1aed4b94f5985938a0ac222a30381d2bd3310d 100644 GIT binary patch delta 15 Wcmdm)u`^?Xp#qbU!DeFxHW2_Y&IHH+ delta 15 Wcmdm)u`^?Xp#qbk@n&NMHW2_Y*#yb} diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 95e04154ec2..f6ee9040372 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 8b8785b1fb770109759e581d45ee21628c82c085..ab4ab91370c252a975495b87a68be6c0d7a38e72 100644 GIT binary patch delta 15 XcmZ1)xioUaQYj`QgU!pO{s{sAH5CR^ delta 15 XcmZ1)xioUaQYj`w\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 1aa54f0700f9e9aa0312114a76904760002c5046..6b7dc88be2eeacb2c22a49ff46356148acde2f4c 100644 GIT binary patch delta 17 ZcmX@!!Fs%db;Fz{CL@E*^O{y31OP^H2p9kW delta 17 ZcmX@!!Fs%db;Fz{CPU-R^O{y31OP^S2pRwY diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 733d0f37cd7..77704431ac4 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index b671c06882319bc1fe113327f537636d1e569f1c..55742eeb0ea9167fe695aaa059f3a847f80f3a80 100644 GIT binary patch delta 15 XcmZ3@yP9{yC1xfggUwf%uQLGvFA4>{ delta 15 XcmZ3@yP9{yC1xf=\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 87764e093018ff6b7cefc5f6b57db36721781157..306c253b7202e308b7f0e7133c77688e1a74e51a 100644 GIT binary patch delta 17 Zcmcb$lI7M)mJNR\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index fdce6f37d94e9d0ec6e4c9e2554c841eaa887ffc..69233d02069afc3e9cb4d6cea2e9919352d60a75 100644 GIT binary patch delta 17 YcmZ42$+WJMX+wYylaayZAfFfu06Sv_2mk;8 delta 17 YcmZ42$+WJMX+wYylcDkEAfFfu06T653IG5A diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 128808c07e3..68119c9987c 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 53d10bbac285413a24c2efff4cdd22f837cbc42e..d74078e064d9a6fcfd0956e2d818f279e6f5f1bc 100644 GIT binary patch delta 15 Wcmexw^50}bumF>h!RAl_EiM2why^MD delta 15 Wcmexw^50}bumF>x@#atgEiM2wlLagQ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index cd2c85ad894..e5245430887 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index a72bb6f5de2ca6dbe86b6ea5609d7f58a814edf9..c8471b991d15e522208b43852597afb46c7a78ec 100644 GIT binary patch delta 17 ZcmZpe$<{EFZ9~QiCL@E*Su4bz002GB2O\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 95be0634010458b1aabef0c58ce794144a14e606..d8434633ae86a549ecfd00170a67f5b3a0448d23 100644 GIT binary patch delta 15 XcmaDL_CRdI88#*(gU#pICb0kjH3$Xp delta 15 XcmaDL_CRdI88#+E\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index c2a8dddd28e0efc8f894766408a697e8e5d65872..c6f5738a947af72b95364df97956b9a88dcf195c 100644 GIT binary patch delta 17 ZcmbPql4a6KmJJVQFc}$aemrA+HvmiQ2($nI delta 17 ZcmbPql4a6KmJJVQFc}(eemrA+Hvmib2(|zK diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index ac5c54993ad..a4856303fcf 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-29 11:52+0000\n" "Last-Translator: Nicolas Friedli \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 37c4171b957e1656297f21500b8110165ce51e55..c072ec6a4a69780f3ed64191ad09a09d1a19b71b 100644 GIT binary patch delta 13 Ucmey${FQk^2a}P(#;$Be04Mqd6aWAK delta 13 Ucmey${FQk^2a}=k#;$Be04M_m761SM diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index d513107b5d3..9b98fe14f4f 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 6a9157224fb0fdb3955bbca9b2da15c6a7d75eec..63e957b8a6d3ded2187a30c5761452da8de3a3b3 100644 GIT binary patch delta 15 XcmZ3YzC?Y)5iTYpgU!dd?r{JBFpdS{ delta 15 XcmZ3YzC?Y)5iTY}\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index a1436eca28c7f6bbe16a2afe37a157261cf265ca..f317461d1499d193d5a5dacc2a164ef6c61073d3 100644 GIT binary patch delta 17 YcmbQy#WtghZ9_{ZlaayZw$4ev0YD`O!2kdN delta 17 YcmbQy#WtghZ9_{ZlcDkEw$4ev0YESZ!vFvP diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 6535a9d78b2..813596791ed 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index de581ff37090e62778c571c1d8e9b219161b60d0..3e782aa6218db2df66ddfc09c0e01aa291db3d94 100644 GIT binary patch delta 13 Ucmey*{GWM32a}P(#;#IE04V+iG5`Po delta 13 Ucmey*{GWM32a}=k#;#IE04WCrGynhq diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index cc5a7f58408..949b65f54b0 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index ad1f38815d264728f20e34d0def2595ffa8dea94..46db2ff98df440c322b13296c84532d8f6d55d48 100644 GIT binary patch delta 17 YcmaFX&iJgIaf7Y~laaw@eU0tX06x_QA^-pY delta 17 YcmaFX&iJgIaf7Y~lcDiueU0tX06yRbBme*a diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index bb734ef694a..46b245c4014 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index af03d2085ca99c9ab491b2dcb8bedef89447378c..549fdfadb1796e02db4ef7fde4ad4d0c7e7b81bc 100644 GIT binary patch delta 15 Wcmewt{V#gMekmp+gUtt}Y=r?n@dkbX delta 15 Wcmewt{V#gMekmqH\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 8029f2787e5369abbd16ac5150c033c6135bb4a0..0c52abb4abf5c1a0c76119bb812b57d97e1ed3a9 100644 GIT binary patch delta 17 YcmaELkNMR-<_&V~OhyKq723Tr08DoWTmS$7 delta 17 YcmaELkNMR-<_&V~Ooqmr723Tr08D}hUH||9 diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index cb12bb0766c..2ea86cc691b 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 7c406a9f5138698b7278274480283e7525a38caf..b1510e22f6261efcf508b7c7c29c3e7f2a8d782a 100644 GIT binary patch delta 15 WcmaFq|I&Yhy9ASw!Ddg11^fUthXtnq delta 15 WcmaFq|I&Yhy9AS=@n%nn1^fUtk_D*% diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index a983a6c4a9d..a1d33718e29 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 2719f9471e1b7fffadbb688d5a114ac0698fbaa5..95c7ccf05dcb5b40a19fc9d6a18c3c5de0cbd340 100644 GIT binary patch delta 17 ZcmdmfpJn@fmJNR\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index fd8570f97714bb167b48bf1ec4da29aa6d756fb6..17d97f62e354b4c523e9e8b98d5e8cf5ef2d95f3 100644 GIT binary patch delta 17 ZcmX@z#(KJqb;Gn3OhyKqXRO#f3jjzI2tNP- delta 17 ZcmX@z#(KJqb;Gn3OoqmrXRO#f3jjzT2tfb< diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 91cd6ff5f67..9dc29bfcefe 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-12 23:47+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 43e6568bf405bb47e7ed7d459bf540e015db0df1..43f37b263c1baa0bf008baca490670bad135b90c 100644 GIT binary patch delta 15 Wcmexk{>Oa70Rbi>gUyEothfO>nFbXA delta 15 Wcmexk{>Oa70RbjMqy`rN diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 0e5112cd11f..8a2ab0aebc9 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index ee1a219f4dc17d21f8070ec343c8c2158f8bdb60..0c4edf17155c0ce883d7b513b1494221d81443d9 100644 GIT binary patch delta 21 ccmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 8d7b313c590b850ddfba708294aafb7fc2859c8a..3943b8bf14ab3f25eea5f60906a6548b44c0e4bc 100644 GIT binary patch delta 15 XcmX@hf0lp4O=cz|gUz>@KQRLUGmi!@ delta 15 XcmX@hf0lp4O=c!T\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 7389c80f277288f148dcbb413fc1d26df8a73aa2..612b652c580898e5f01911b6d8a00201b2eebf5e 100644 GIT binary patch delta 15 WcmX?TdeC%(xFC~}!DdOp6`TMonFO~0 delta 15 WcmX?TdeC%(xFD0E@n%WE6`TMoqy)JD diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 6426ed2adea..d076a956c77 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 50278853fd79e232f0e3edae52f2cdd68a11bf01..fba87fca3c5e8b8e0f321db13a9ef4fad1577f2e 100644 GIT binary patch delta 15 WcmbQ~Hq&jxF##qcgUu%d0)+rE)CHFS delta 15 WcmbQ~Hq&jxF##q+\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index dcb3d0a2f1e9c0fd3a55a79a6ab53c6239690065..10a8b134f77d23d4e8ecfee83f9b478f15cfbf27 100644 GIT binary patch delta 17 YcmdlplX1^X#trT|OhyKqJ#~r|06gLa?*IS* delta 17 YcmdlplX1^X#trT|OoqmrJ#~r|06gsl@c;k- diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 3c6175b8a3c..941feb67768 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 493b956158389dc5ec7fdf653e6f13704ecdbf8f..5f613bc1c7dda9d8949ed2782a250a27a70b78aa 100644 GIT binary patch delta 17 YcmezTit+O+#trFCOhyKqGo84M0ZzdO6#xJL delta 17 YcmezTit+O+#trFCOoqmrGo84M0Zz;Z7XSbN diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index a47794108ce..961560903ae 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index fd5802b51d4b8c240274d8ac7bd83240ffc67a0f..1258618884adab04bf68bb376b137dec2ce49698 100644 GIT binary patch delta 13 Ucmeyy{Ec}+2a}P(#;zPj04Nj%7XSbN delta 13 Ucmeyy{Ec}+2a}=k#;zPj04N;=82|tP diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 08bbd397470..98843dc1701 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index cebcfe4ed598a5ff9daabf9201bcff0b2853ac96..f012060d73c493f86ad26176156e6979ca91aea5 100644 GIT binary patch delta 23 fcmdn_fo10hmJJyzIE)Mw3=FIcEH)RcIN1*XdN2vf delta 23 fcmdn_fo10hmJJyzI1J1b3=FIc%{CXTIN1*XdRYn0 diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 283fec461ce..b91b0f352c1 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 1d26a2f9c36218251ab23e74ebccc7de6366ccaa..8b1c525829e8cbd759ddc6645361adde41c0f96e 100644 GIT binary patch delta 15 WcmbQ^Fvnp-yfBlI!RAEa-8=v++yyNF delta 15 WcmbQ^Fvnp-yfBlY@#aL~-8=v+=LIhS diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 9e6714c5360..a7bf83c419f 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index e90f0420351cc7e5afeb281bdf0ae47c261a0a2c..57ec1cd573e58cafa63e09a0f5233db826a4c4e5 100644 GIT binary patch delta 14 VcmX@)cF1jmgD8`c!D1&-J^(4s1cCqn delta 14 VcmX@)cF1jmgD8`s@nR=YJ^(4#1cU$p diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 027b112ec02..63876907664 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index e6646ed271f7a1e590d3866cc4adcf9b1e53e38c..d3b9271ed2d8c6e4c34bc570521d3586eab39074 100644 GIT binary patch delta 17 YcmX@s#CWWUaf78ilaaw@Yk6)Z069+uIRF3v delta 17 YcmX@s#CWWUaf78ilcDiuYk6)Z06AI(I{*Lx diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 16a751041ef..7a510e48912 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 0e391d02c672cc7ef8544cc887e1283ab5e5d624..5356c376d7e9bb5f9c6efb6e64e6e5b1e0af44c8 100644 GIT binary patch delta 15 WcmeB|>6h8CpN+}LVDmvXKXw2sjRgMy delta 15 WcmeB|>6h8CpN+}Tc=JIvKXw2sm<0g< diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index d036fbaeda9..57448a56bf1 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index f132f6a50dde7f598abcdee4c44428885d0a963b..7979c92331a01af53770bf13c30528fcfd8ad385 100644 GIT binary patch delta 17 ZcmdlspJm&8mJOcMn2ZcIdr!-*1OP&W2Oa\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 18e45f5901b5e5d44e9d6972d3a9b1e531d8d5d0..e3c73e324fe0cdb4d84299fc99e51aed8a511aad 100644 GIT binary patch delta 15 WcmeyM^+9WcIWLou!DdTda}EG7Oa#RM delta 15 WcmeyM^+9WcIWLo;@n%b2a}EG7R|LlZ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 01d149df115..38a5d08b120 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index f2841a08cc6..298c1a31a24 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 44cf7169c645d9ef9d054d28679613d55258b1da..30520f455885a88a6e0fe3c5eebb7798c1f9fa07 100644 GIT binary patch delta 23 fcmdn?kY(FLmJQz*au^vX7#LU?SZw~kaC;vBfzb-1 delta 23 fcmdn?kY(FLmJQz*au}E?7#LU?nr;5SaC;vBf%*!j diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 8f658a6e60e..091076741da 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 16:11+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 7110cc4639c8ed284b6223992edecb631f6a8556..8af4ee1586fa85efe93eec253341d0693f18775c 100644 GIT binary patch delta 15 Wcmccab=_-&urQO6!DdlmCm{eYKm@D+ delta 15 Wcmccab=_-&urQOM@n%tBCm{eYO9ZX} diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 33170c32bf8..7c79134bd92 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index cb336d448af6a5224d5a932d59b861ec6c008687..9274b8aa57ba684e4d62731fda9b237b9bee7249 100644 GIT binary patch delta 13 Ucmcb}a*<_12a}P(#;)Ux03~PzDgXcg delta 13 Ucmcb}a*<_12a}=k#;)Ux03~q+EC2ui diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index fe0aa8488ee..a95de8215e2 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index cd52c42992ddaf9f2ee6b955d421210d9919fb42..3fa46543462560b4229691d6bcf18c5d9f29e1d3 100644 GIT binary patch delta 13 UcmX@Za)xC>2a}P(#;!w*03_xG8vp2a}=k#;!w*03`1P9RL6T diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 170ac34a190..a03d76491a4 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index aadf80499a2a970c1edf0810a025fa042e896210..50293a975f81a3f43dd0fe34eef7a91639f61760 100644 GIT binary patch delta 15 XcmdmFy2*6IPXQ()gU!DMwsQgiHe&{A delta 15 XcmdmFy2*6IPXQ)F\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 95c2cb44b2135ab1008d3c27c2b1f7099d4f84a7..e5eae30f83e2f558b1a73d94b3f2f90aa270dc40 100644 GIT binary patch delta 13 Vcmey)@||VEHYOv3jXU-;0st!F1\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 93b901f4667b8765ec9ce815c65506818e5223e9..965f9e87c9cc3bcc3df223e357afff9364241b4e 100644 GIT binary patch delta 13 Ucmeyw{E2x&2a}P(#;y!T04J;k3jhEB delta 13 Ucmeyw{E2x&2a}=k#;y!T04KEt4FCWD diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index f8d78cae1f5..2ab60f34a68 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 6cfe79f5a8012980cb46e580045ea0e5513e4cb5..348581ab8c865f715c82b4cd362fd1e911784c48 100644 GIT binary patch delta 17 ZcmdmShIz*s<_)WBnT!lJudVIQ002xM2pa$Z delta 17 ZcmdmShIz*s<_)WBnGB6LudVIQ002xX2ps?b diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index feb46113ff2..bdd8411068c 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 78fc682591bca6a12d57aa35f3a5da024dde1034..cf3476b5d5f9bfff6a2e49948c3947e2558fda42 100644 GIT binary patch delta 21 ccmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 9890f49ac7ed0b6fa3eb5ea955c01b682dcb30bc..7847c942917bacee58c37d0943e1e815d0de6545 100644 GIT binary patch delta 19 acmeys{DFBw2Zxb?f`NgRfyKrN35)35)\n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 1a3a52a705adbd89f41b4b02b6bf8ff4ed796f97..ddc6246f75041c432ef86aada0ee900e5dfe700b 100644 GIT binary patch delta 15 XcmX@7cTR7^LS7~#gUyS1S91aYGqDBI delta 15 XcmX@7cTR7^LS80A\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 09105dcec867c1fad5a5c890604b9b2e0d31f4b4..257c8a7140d358d892b715ccce1bde17d3aa1699 100644 GIT binary patch delta 17 ZcmezTk@@pS<_$+CGZ`6dJ~ml56#!Wr2-pAs delta 17 ZcmezTk@@pS<_$+CGZ`9hJ~ml56#!W$2-*Mu diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 1aa20a80f92..8bcdb06b30a 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-13 00:08+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-16 04:38+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index cbb303058a1d140a842d364415aef341e237ca42..3796654ed87ade51543c4744e31cd0d8b82ae167 100644 GIT binary patch delta 21 ccmeD8@Au!}C&^)CpkQENWni&6Owy7M07z;D$p8QV delta 21 ccmeD8@Au!}C&^)8reI)TWoWiJOwy7M07#Ps%m4rY diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index ef2fa70bbd5..a2bd1ea675f 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-06 00:16+0000\n" +"POT-Creation-Date: 2021-06-20 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" From 6918e69600810a4664e53653d6ff0290c3c4a788 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 20 Jun 2021 23:58:07 +0900 Subject: [PATCH 104/160] Update CHANGES for PR #9350 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index e75e38debcf..a0f1bab262d 100644 --- a/CHANGES +++ b/CHANGES @@ -69,6 +69,7 @@ Bugs fixed * #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct +* #9350: manpage: Fix font isn't reset after keyword at the top of samp role * #9306: Linkcheck reports broken link when remote server closes the connection on HEAD request * #9280: py domain: "exceptions" module is not displayed From b9158b96d261eb6126dbd035aa72c621ddea91e8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 21 Jun 2021 02:43:55 +0900 Subject: [PATCH 105/160] Fix #9364: autodoc: 1-element tuple on the defarg is wrongly rendered --- CHANGES | 2 ++ sphinx/pycode/ast.py | 8 +++++--- tests/test_pycode_ast.py | 3 ++- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index a0f1bab262d..e48dcace957 100644 --- a/CHANGES +++ b/CHANGES @@ -65,6 +65,8 @@ Bugs fixed * #9250: autodoc: The inherited method not having docstring is wrongly parsed * #9283: autodoc: autoattribute directive failed to generate document for an attribute not having any comment +* #9364: autodoc: single element tuple on the default argument value is wrongly + rendered * #9317: html: Pushing left key causes visiting the next page at the first page * #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by diff --git a/sphinx/pycode/ast.py b/sphinx/pycode/ast.py index f541ec0a90c..23da575bde4 100644 --- a/sphinx/pycode/ast.py +++ b/sphinx/pycode/ast.py @@ -213,10 +213,12 @@ def visit_UnaryOp(self, node: ast.UnaryOp) -> str: return "%s %s" % (self.visit(node.op), self.visit(node.operand)) def visit_Tuple(self, node: ast.Tuple) -> str: - if node.elts: - return "(" + ", ".join(self.visit(e) for e in node.elts) + ")" - else: + if len(node.elts) == 0: return "()" + elif len(node.elts) == 1: + return "(%s,)" % self.visit(node.elts[0]) + else: + return "(" + ", ".join(self.visit(e) for e in node.elts) + ")" if sys.version_info < (3, 8): # these ast nodes were deprecated in python 3.8 diff --git a/tests/test_pycode_ast.py b/tests/test_pycode_ast.py index e8006235172..6ae7050da3f 100644 --- a/tests/test_pycode_ast.py +++ b/tests/test_pycode_ast.py @@ -53,8 +53,9 @@ ("+ a", "+ a"), # UAdd ("- 1", "- 1"), # UnaryOp ("- a", "- a"), # USub - ("(1, 2, 3)", "(1, 2, 3)"), # Tuple + ("(1, 2, 3)", "(1, 2, 3)"), # Tuple ("()", "()"), # Tuple (empty) + ("(1,)", "(1,)"), # Tuple (single item) ]) def test_unparse(source, expected): module = ast.parse(source) From fb236053ab0eb71aa9b16848f7f453e709e56d5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 06:58:43 +0200 Subject: [PATCH 106/160] Apply style suggestions from code review Co-authored-by: Eric Holscher <25510+ericholscher@users.noreply.github.com> --- doc/tutorial/index.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 0d215424945..b81445d3496 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -280,7 +280,7 @@ Using a third-party theme ~~~~~~~~~~~~~~~~~~~~~~~~~ Themes, on the other hand, are a particular class of extensions that allow you -to customize the appearance of your documentation. Again, Sphinx has several +to customize the appearance of your documentation. Sphinx has several :ref:`built-in themes `, and there are also third-party ones. For example, to use the `Furo `_ third-party theme @@ -355,9 +355,8 @@ styles, which means that, by using ``---`` for the "Installation" section after ``===`` for the "Usage" section, you have declared "Installation" to be a *subsection* of "Usage". -In addition, add a ``toctree`` :ref:`directive ` at the end -of ``index.rst`` including the document you just created, -as follows: +To complete the process, add a ``toctree`` :ref:`directive ` at +the end of ``index.rst`` including the document you just created, as follows: .. code-block:: rest @@ -390,7 +389,7 @@ One powerful feature of Sphinx is the ability to seamlessly add a document, a section, a figure, a code object, etc. This tutorial is full of them! -To add a straightforward cross-reference, write this sentence right after the +To add a cross-reference, write this sentence right after the introduction paragraph in ``index.rst``: .. code-block:: rest @@ -408,6 +407,7 @@ For example, to reference the "Installation" subsection, add a label right before the heading, as follows: .. code-block:: rest + :emphasize-lines: 4 Usage ===== From 6f71c7bd7ed6593a4dd2d2de126b83ed89021b0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 07:09:19 +0200 Subject: [PATCH 107/160] Use absolute links for Sphinx documentation references --- doc/tutorial/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index b81445d3496..186beff8cf1 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -247,7 +247,7 @@ Enabling a built-in extension ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In addition to these configuration values, you can customize Sphinx even more -by using :doc:`extensions <../usage/extensions/index>`. Sphinx ships several +by using :doc:`extensions `. Sphinx ships several :ref:`built-in ones `, and there are many more :ref:`maintained by the community `. From e75f31ad47155d77db6a370f87732c9df6ff4649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 07:11:22 +0200 Subject: [PATCH 108/160] Add link to third-party sphinx-themes --- doc/tutorial/index.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 186beff8cf1..e98e718e144 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -281,7 +281,8 @@ Using a third-party theme Themes, on the other hand, are a particular class of extensions that allow you to customize the appearance of your documentation. Sphinx has several -:ref:`built-in themes `, and there are also third-party ones. +:ref:`built-in themes `, and there are also `third-party +ones `_. For example, to use the `Furo `_ third-party theme in your HTML documentation, first you will need to install it with ``pip`` on From d08c3677d12f80bcbcaff22f4537ae5e7fc14030 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 07:30:02 +0200 Subject: [PATCH 109/160] Avoid reference to earlier content --- doc/tutorial/index.rst | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index e98e718e144..94878548f6b 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -318,10 +318,11 @@ Narrative documentation in Sphinx Inserting documents in the project hierarchy ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -As discussed at the beginning, ``index.rst`` is the :term:`master document`, -whose main function is to serve as a welcome page and to contain the root of -the "table of contents tree" (or *toctree*). Sphinx allows you to assemble -a project from different files, which is helpful when the project grows. +The file ``index.rst`` created by ``sphinx-quickstart`` is the :term:`master +document`, whose main function is to serve as a welcome page and to contain the +root of the "table of contents tree" (or *toctree*). Sphinx allows you to +assemble a project from different files, which is helpful when the project +grows. As an example, create a new file ``docs/source/usage.rst`` (next to ``index.rst``) with these contents: From 3fcaa172db8eccdd97c01a49102f7a95124fbbcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 07:38:51 +0200 Subject: [PATCH 110/160] Move reference to list of Pygments lexers --- doc/tutorial/index.rst | 12 +++--------- doc/usage/restructuredtext/directives.rst | 10 ++++++---- 2 files changed, 9 insertions(+), 13 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 94878548f6b..fe3eaf04564 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -342,15 +342,9 @@ As an example, create a new file ``docs/source/usage.rst`` (next to (.venv) $ pip install lumache This new file contains two :ref:`section ` headers, normal -paragraph text, and a ``code-block`` directive that renders a block of content -as source code, with appropriate syntax highlighting (in this case, generic -``console`` text). - -.. note:: - - You can read `the list of available highlight - languages `_ in the Pygments - documentation. +paragraph text, and a :ref:`code-block ` directive that renders +a block of content as source code, with appropriate syntax highlighting +(in this case, generic ``console`` text). The structure of the document is determined by the succession of heading styles, which means that, by using ``---`` for the "Installation" section diff --git a/doc/usage/restructuredtext/directives.rst b/doc/usage/restructuredtext/directives.rst index 24f3af9d8bf..329bdef5d11 100644 --- a/doc/usage/restructuredtext/directives.rst +++ b/doc/usage/restructuredtext/directives.rst @@ -488,6 +488,8 @@ __ https://pygments.org/docs/lexers .. versionadded:: 2.1 +.. _rst-code-block: + .. rst:directive:: .. code-block:: [language] Example:: @@ -497,10 +499,10 @@ __ https://pygments.org/docs/lexers Some Ruby code. The directive's alias name :rst:dir:`sourcecode` works as well. This - directive takes a language name as an argument. It can be any lexer alias - supported by Pygments. If it is not given, the setting of - :rst:dir:`highlight` directive will be used. If not set, - :confval:`highlight_language` will be used. + directive takes a language name as an argument. It can be `any lexer alias + supported by Pygments `_. If it is not + given, the setting of :rst:dir:`highlight` directive will be used. + If not set, :confval:`highlight_language` will be used. .. versionchanged:: 2.0 The ``language`` argument becomes optional. From 8377a550a27a22b1a292fe33a22e1a32a95fe5e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 07:46:13 +0200 Subject: [PATCH 111/160] Simplify out-of-toctree warning --- doc/tutorial/index.rst | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index fe3eaf04564..f42bbee0cc9 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -371,11 +371,9 @@ just created. Neat! .. warning:: - Every document should belong to a *toctree*. Otherwise, Sphinx will emit a - ``WARNING: document isn't included in any toctree``, and the end result - will depend on the builder. For the HTML builder, the page will not be - linked from anywhere (therefore it will not be discoverable), whereas for - the PDF builder, it will not be included at all. + Documents outside a *toctree* will result in ``WARNING: document isn't + included in any toctree`` messages during the build process, and will be + unreachable for users. Adding cross-references ~~~~~~~~~~~~~~~~~~~~~~~ From 0581a17ca6ee1f6b1b1292536372a82908bfd2bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 08:02:21 +0200 Subject: [PATCH 112/160] Clarify this is about HTML themes --- doc/tutorial/index.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index f42bbee0cc9..d4a5ad97d0d 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -276,8 +276,8 @@ durations report at the end of the console output, like this one: ====================== slowest reading durations ======================= 0.042 temp/source/index -Using a third-party theme -~~~~~~~~~~~~~~~~~~~~~~~~~ +Using a third-party HTML theme +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Themes, on the other hand, are a particular class of extensions that allow you to customize the appearance of your documentation. Sphinx has several @@ -285,7 +285,7 @@ to customize the appearance of your documentation. Sphinx has several ones `_. For example, to use the `Furo `_ third-party theme -in your HTML documentation, first you will need to install it with ``pip`` on +in your HTML documentation, first you will need to install it with ``pip`` in your Python virtual environment, like this: .. code-block:: console From 35714269e86b5bea09139143849b21c45e124f70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 08:09:26 +0200 Subject: [PATCH 113/160] Add text representation of the document structure --- doc/tutorial/index.rst | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index d4a5ad97d0d..0657dda3295 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -364,10 +364,16 @@ the end of ``index.rst`` including the document you just created, as follows: usage This step inserts that document in the root of the *toctree*, so now it belongs -to the structure of your project. If you export the documentation to HTML -running ``make html``, you will see that the ``toctree`` gets rendered as a -list of hyperlinks, and this allows you to navigate to the new page you -just created. Neat! +to the structure of your project, which so far looks like this: + +.. code-block:: text + + index + └── usage + +If you export the documentation to HTML running ``make html``, you will see +that the ``toctree`` gets rendered as a list of hyperlinks, and this allows you +to navigate to the new page you just created. Neat! .. warning:: From e865c526bb4c6601ed8d0726bc15d79fefa1ba4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 08:17:30 +0200 Subject: [PATCH 114/160] Add filenames as captions for relevant code blocks --- doc/tutorial/index.rst | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 0657dda3295..505c5f874e5 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -40,6 +40,7 @@ In a new directory, create a file called ``README.rst`` with the following content. .. code-block:: rest + :caption: README.rst Lumache ======= @@ -162,6 +163,7 @@ is written in reStructuredText, a powerful markup language. Modify the file as follows: .. code-block:: rest + :caption: docs/source/index.rst Welcome to Lumache's documentation! =================================== @@ -256,6 +258,7 @@ locate the ``extensions`` list in your ``conf.py`` and add one element as follows: .. code-block:: python + :caption: docs/source/conf.py # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom @@ -296,6 +299,7 @@ And then, locate the ``html_theme`` variable on your ``conf.py`` and replace its value as follows: .. code-block:: python + :caption: docs/source/conf.py # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. @@ -328,6 +332,7 @@ As an example, create a new file ``docs/source/usage.rst`` (next to ``index.rst``) with these contents: .. code-block:: rest + :caption: docs/source/usage.rst Usage ===== @@ -355,6 +360,7 @@ To complete the process, add a ``toctree`` :ref:`directive ` at the end of ``index.rst`` including the document you just created, as follows: .. code-block:: rest + :caption: docs/source/index.rst Contents -------- @@ -393,6 +399,7 @@ To add a cross-reference, write this sentence right after the introduction paragraph in ``index.rst``: .. code-block:: rest + :caption: docs/source/index.rst Check out the :doc:`usage` section for further information. @@ -407,6 +414,7 @@ For example, to reference the "Installation" subsection, add a label right before the heading, as follows: .. code-block:: rest + :caption: docs/source/usage.rst :emphasize-lines: 4 Usage @@ -422,6 +430,7 @@ before the heading, as follows: And make the sentence you added in ``index.rst`` look like this: .. code-block:: rest + :caption: docs/source/index.rst Check out the :doc:`usage` section for further information, including how to :ref:`install ` the project. From 106346a4ef5711428f289290d7b1c9d5342d1959 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 08:24:10 +0200 Subject: [PATCH 115/160] Make section title more goal-oriented --- doc/tutorial/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 505c5f874e5..57de160062a 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -319,8 +319,8 @@ appearance: Narrative documentation in Sphinx --------------------------------- -Inserting documents in the project hierarchy -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Structuring your documentation across multiple pages +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The file ``index.rst`` created by ``sphinx-quickstart`` is the :term:`master document`, whose main function is to serve as a welcome page and to contain the From a3478eb2d01cb7e210d4a3faa0a04ed5606d57e5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 21 Jun 2021 14:25:17 +0200 Subject: [PATCH 116/160] Update doc/tutorial/index.rst Co-authored-by: Manuel Kaufmann --- doc/tutorial/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 57de160062a..68fbb5dec00 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -209,7 +209,7 @@ e-book in EPUB format, run this command from the ``docs`` directory: (.venv) $ make epub After that, you will see the files corresponding to the e-book under -``docs/build/html/``. You can either open ``Lumache.epub`` with an +``docs/build/epub/``. You can either open ``Lumache.epub`` with an EPUB-compatible e-book viewer, like `Calibre `_, or preview ``index.xhtml`` on a web browser. From e6ae41ed52bb6c9d4f4b81dbe3417d532994f905 Mon Sep 17 00:00:00 2001 From: Joe Nelson Date: Mon, 21 Jun 2021 17:08:24 -0500 Subject: [PATCH 117/160] Include "role" attribute in expected HTML fragment --- tests/test_intl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_intl.py b/tests/test_intl.py index 73d94166ea9..7791b4aeed5 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -622,7 +622,7 @@ def test_html_meta(app): assert expected_expr in result expected_expr = '' assert expected_expr in result - expected_expr = '

    HIDDEN TOC

    ' + expected_expr = '

    HIDDEN TOC

    ' assert expected_expr in result From 5f41044abb6802291989de8b34cd587b7e79ec1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 22 Jun 2021 15:20:06 +0200 Subject: [PATCH 118/160] Tone down LaTeX info to "note" Co-authored-by: Jakob Lykke Andersen --- doc/tutorial/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 68fbb5dec00..1e600e637a4 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -233,7 +233,7 @@ With this configuration value, and after running ``make epub`` again, you will notice that URLs appear now as footnotes, which avoids cluttering the text. Sweet! -.. warning:: +.. note:: Generating a PDF using Sphinx can be done running ``make latexpdf``, provided that the system has a working :math:`\LaTeX` installation, From c9d2a73d93cd933616a93684a7b7ab7ce141e7f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 22 Jun 2021 15:26:59 +0200 Subject: [PATCH 119/160] Rename to root document --- doc/glossary.rst | 2 +- doc/templating.rst | 2 +- doc/tutorial/index.rst | 4 ++-- doc/usage/advanced/setuptools.rst | 2 +- doc/usage/builders/index.rst | 2 +- doc/usage/quickstart.rst | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/glossary.rst b/doc/glossary.rst index 87b7014b6fa..f989df1aeec 100644 --- a/doc/glossary.rst +++ b/doc/glossary.rst @@ -73,7 +73,7 @@ Glossary For more information, refer to :doc:`/usage/extensions/index`. - master document + root document The document that contains the root :rst:dir:`toctree` directive. object diff --git a/doc/templating.rst b/doc/templating.rst index 0e9d38adda7..b253723198f 100644 --- a/doc/templating.rst +++ b/doc/templating.rst @@ -115,7 +115,7 @@ The following blocks exist in the ``layout.html`` template: ``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 master + 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`. diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 1e600e637a4..8ab1fc28783 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -128,7 +128,7 @@ The purpose of each of these files is: as some extra configuration keys. ``source/index.rst`` - The :term:`master document` of the project, which serves as welcome page and + The :term:`root document` of the project, which serves as welcome page and contains the root of the "table of contents tree" (or *toctree*). Thanks to this bootstrapping step, you already have everything needed to render @@ -322,7 +322,7 @@ Narrative documentation in Sphinx Structuring your documentation across multiple pages ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The file ``index.rst`` created by ``sphinx-quickstart`` is the :term:`master +The file ``index.rst`` created by ``sphinx-quickstart`` is the :term:`root document`, whose main function is to serve as a welcome page and to contain the root of the "table of contents tree" (or *toctree*). Sphinx allows you to assemble a project from different files, which is helpful when the project diff --git a/doc/usage/advanced/setuptools.rst b/doc/usage/advanced/setuptools.rst index f4dfb7f669d..7f993e10c54 100644 --- a/doc/usage/advanced/setuptools.rst +++ b/doc/usage/advanced/setuptools.rst @@ -164,7 +164,7 @@ Options for setuptools integration .. setuptools-confval:: link-index - A boolean that ensures index.html will be linked to the master doc. Default + A boolean that ensures index.html will be linked to the root doc. Default is false. This can also be set by passing the `-i` flag to ``setup.py``: diff --git a/doc/usage/builders/index.rst b/doc/usage/builders/index.rst index 74853fee971..4d5315227d2 100644 --- a/doc/usage/builders/index.rst +++ b/doc/usage/builders/index.rst @@ -51,7 +51,7 @@ The builder's "name" must be given to the **-b** command-line option of This is an HTML builder that combines the whole project in one output file. (Obviously this only works with smaller projects.) The file is named like - the master document. No indices will be generated. + the root document. No indices will be generated. .. autoattribute:: name diff --git a/doc/usage/quickstart.rst b/doc/usage/quickstart.rst index 83b5211bd67..ec36f5df9b0 100644 --- a/doc/usage/quickstart.rst +++ b/doc/usage/quickstart.rst @@ -48,8 +48,8 @@ Defining document structure --------------------------- Let's assume you've run :program:`sphinx-quickstart`. It created a source -directory with :file:`conf.py` and a master document, :file:`index.rst`. The -main function of the :term:`master document` is to serve as a welcome page, and +directory with :file:`conf.py` and a root document, :file:`index.rst`. The +main function of the :term:`root document` is to serve as a welcome page, and 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. From 15fe52dce6439d0e4c81d1a2d8fadc6401cae1e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 22 Jun 2021 15:37:30 +0200 Subject: [PATCH 120/160] Separate extensions and themes more clearly --- doc/tutorial/index.rst | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 8ab1fc28783..936bfa5496b 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -242,8 +242,11 @@ Sweet! and in general LaTeX requires careful configuration in some cases, so PDF generation is out of scope for this tutorial. -More Sphinx customization using extensions ------------------------------------------- +More Sphinx customization +------------------------- + +There are two main ways to customize your documentation beyond what is possible +with core Sphinx: extensions and themes. Enabling a built-in extension ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -282,10 +285,9 @@ durations report at the end of the console output, like this one: Using a third-party HTML theme ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Themes, on the other hand, are a particular class of extensions that allow you -to customize the appearance of your documentation. Sphinx has several -:ref:`built-in themes `, and there are also `third-party -ones `_. +Themes, on the other hand, are a way to customize the appearance of your +documentation. Sphinx has several :ref:`built-in themes `, and +there are also `third-party ones `_. For example, to use the `Furo `_ third-party theme in your HTML documentation, first you will need to install it with ``pip`` in From 013e67f4fd9b1317ce4697d6462437098c4ff927 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Tue, 22 Jun 2021 15:44:52 +0200 Subject: [PATCH 121/160] Clarify what happens if no title is used in the :ref: --- doc/tutorial/index.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 936bfa5496b..24d56f28c2f 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -440,7 +440,9 @@ And make the sentence you added in ``index.rst`` look like this: Notice a trick here: the ``install`` part specifies how the link will look like (we want it to be a specific word, so the sentence makes sense), whereas the ```` part refers to the actual label we want to add a -cross-reference to. Both the ``:doc:`` and the ``:ref:`` roles will be rendered +cross-reference to. If you do not include an explicit title, hence using +``:ref:`installation```, the section title will be used (in this case, +``Installation``). Both the ``:doc:`` and the ``:ref:`` roles will be rendered as hyperlinks in the HTML documentation. Where to go from here From 57237dbb075e112aab7685fc04179156b6cfa06a Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 24 Jun 2021 19:15:54 +0200 Subject: [PATCH 122/160] C++, support inline variables --- CHANGES | 1 + sphinx/domains/cpp.py | 9 +++++---- tests/test_domain_cpp.py | 2 ++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index a0f1bab262d..98a18a0faae 100644 --- a/CHANGES +++ b/CHANGES @@ -53,6 +53,7 @@ Features added * #9097: Optimize the paralell build * #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using regular expressions +* C++, add support for inline variables. Bugs fixed diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 14d8cde1b7d..b51cbd7e1da 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -5957,12 +5957,13 @@ def _parse_decl_specs_simple(self, outer: str, typed: bool) -> ASTDeclSpecsSimpl if threadLocal: continue + if not inline and outer in ('function', 'member'): + inline = self.skip_word('inline') + if inline: + continue + if outer == 'function': # function-specifiers - if not inline: - inline = self.skip_word('inline') - if inline: - continue if not friend: friend = self.skip_word('friend') if friend: diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index a34fec172de..9bf6da4f8fc 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -435,6 +435,8 @@ def test_domain_cpp_ast_member_definitions(): # check('member', 'int b : (true ? 8 : a) = 42', {1: 'b__i', 2: '1b'}) check('member', 'int b : 1 || new int{0}', {1: 'b__i', 2: '1b'}) + check('member', 'inline int n', {1: 'n__i', 2: '1n'}) + def test_domain_cpp_ast_function_definitions(): check('function', 'void f(volatile int)', {1: "f__iV", 2: "1fVi"}) From b94a60dc8941eb005844bb8789d68695f805973b Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 24 Jun 2021 19:39:15 +0200 Subject: [PATCH 123/160] C++, support consteval and constinit --- CHANGES | 6 +++- sphinx/domains/cpp.py | 70 ++++++++++++++++++++++++++-------------- tests/test_domain_cpp.py | 2 ++ 3 files changed, 53 insertions(+), 25 deletions(-) diff --git a/CHANGES b/CHANGES index 98a18a0faae..c862f0cb621 100644 --- a/CHANGES +++ b/CHANGES @@ -53,7 +53,11 @@ Features added * #9097: Optimize the paralell build * #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using regular expressions -* C++, add support for inline variables. +* C++, add support for + + - ``inline`` variables, + - ``consteval`` functions, + - ``constinit`` variables. Bugs fixed diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index b51cbd7e1da..3e5aabc49f6 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -320,7 +320,8 @@ _keywords = [ 'alignas', 'alignof', 'and', 'and_eq', 'asm', 'auto', 'bitand', 'bitor', 'bool', 'break', 'case', 'catch', 'char', 'char16_t', 'char32_t', 'class', - 'compl', 'concept', 'const', 'constexpr', 'const_cast', 'continue', + 'compl', 'concept', 'const', 'consteval', 'constexpr', 'constinit', + 'const_cast', 'continue', 'decltype', 'default', 'delete', 'do', 'double', 'dynamic_cast', 'else', 'enum', 'explicit', 'export', 'extern', 'false', 'float', 'for', 'friend', 'goto', 'if', 'inline', 'int', 'long', 'mutable', 'namespace', 'new', @@ -2101,14 +2102,17 @@ def _add_anno(signode: TextElement, text: str) -> None: class ASTDeclSpecsSimple(ASTBase): def __init__(self, storage: str, threadLocal: bool, inline: bool, virtual: bool, - explicit: bool, constexpr: bool, volatile: bool, const: bool, - friend: bool, attrs: List[ASTAttribute]) -> None: + explicit: bool, consteval: bool, constexpr: bool, constinit: bool, + volatile: bool, const: bool, friend: bool, + attrs: List[ASTAttribute]) -> None: self.storage = storage self.threadLocal = threadLocal self.inline = inline self.virtual = virtual self.explicit = explicit + self.consteval = consteval self.constexpr = constexpr + self.constinit = constinit self.volatile = volatile self.const = const self.friend = friend @@ -2122,7 +2126,9 @@ def mergeWith(self, other: "ASTDeclSpecsSimple") -> "ASTDeclSpecsSimple": self.inline or other.inline, self.virtual or other.virtual, self.explicit or other.explicit, + self.consteval or other.consteval, self.constexpr or other.constexpr, + self.constinit or other.constinit, self.volatile or other.volatile, self.const or other.const, self.friend or other.friend, @@ -2143,8 +2149,12 @@ def _stringify(self, transform: StringifyTransform) -> str: res.append('virtual') if self.explicit: res.append('explicit') + if self.consteval: + res.append('consteval') if self.constexpr: res.append('constexpr') + if self.constinit: + res.append('constinit') if self.volatile: res.append('volatile') if self.const: @@ -2177,8 +2187,12 @@ def _add(signode: TextElement, text: str) -> bool: addSpace = _add(signode, 'virtual') if self.explicit: addSpace = _add(signode, 'explicit') + if self.consteval: + addSpace = _add(signode, 'consteval') if self.constexpr: addSpace = _add(signode, 'constexpr') + if self.constinit: + addSpace = _add(signode, 'constinit') if self.volatile: addSpace = _add(signode, 'volatile') if self.const: @@ -5930,13 +5944,23 @@ def _parse_decl_specs_simple(self, outer: str, typed: bool) -> ASTDeclSpecsSimpl inline = None virtual = None explicit = None + consteval = None constexpr = None + constinit = None volatile = None const = None friend = None attrs = [] while 1: # accept any permutation of a subset of some decl-specs self.skip_ws() + if not const and typed: + const = self.skip_word('const') + if const: + continue + if not volatile and typed: + volatile = self.skip_word('volatile') + if volatile: + continue if not storage: if outer in ('member', 'function'): if self.skip_word('static'): @@ -5952,18 +5976,29 @@ def _parse_decl_specs_simple(self, outer: str, typed: bool) -> ASTDeclSpecsSimpl if self.skip_word('register'): storage = 'register' continue - if not threadLocal and outer == 'member': - threadLocal = self.skip_word('thread_local') - if threadLocal: - continue - if not inline and outer in ('function', 'member'): inline = self.skip_word('inline') if inline: continue + if not constexpr and outer in ('member', 'function'): + constexpr = self.skip_word("constexpr") + if constexpr: + continue + if outer == 'member': + if not constinit: + constinit = self.skip_word('constinit') + if constinit: + continue + if not threadLocal: + threadLocal = self.skip_word('thread_local') + if threadLocal: + continue if outer == 'function': - # function-specifiers + if not consteval: + consteval = self.skip_word('consteval') + if consteval: + continue if not friend: friend = self.skip_word('friend') if friend: @@ -5976,27 +6011,14 @@ def _parse_decl_specs_simple(self, outer: str, typed: bool) -> ASTDeclSpecsSimpl explicit = self.skip_word('explicit') if explicit: continue - - if not constexpr and outer in ('member', 'function'): - constexpr = self.skip_word("constexpr") - if constexpr: - continue - if not volatile and typed: - volatile = self.skip_word('volatile') - if volatile: - continue - if not const and typed: - const = self.skip_word('const') - if const: - continue attr = self._parse_attribute() if attr: attrs.append(attr) continue break return ASTDeclSpecsSimple(storage, threadLocal, inline, virtual, - explicit, constexpr, volatile, const, - friend, attrs) + explicit, consteval, constexpr, constinit, + volatile, const, friend, attrs) def _parse_decl_specs(self, outer: str, typed: bool = True) -> ASTDeclSpecs: if outer: diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 9bf6da4f8fc..47e5bf379c2 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -436,6 +436,7 @@ def test_domain_cpp_ast_member_definitions(): check('member', 'int b : 1 || new int{0}', {1: 'b__i', 2: '1b'}) check('member', 'inline int n', {1: 'n__i', 2: '1n'}) + check('member', 'constinit int n', {1: 'n__i', 2: '1n'}) def test_domain_cpp_ast_function_definitions(): @@ -567,6 +568,7 @@ def test_domain_cpp_ast_function_definitions(): check("function", "void f(int *volatile const p)", {1: "f__iPVC", 2: "1fPVCi"}) check('function', 'extern int f()', {1: 'f', 2: '1fv'}) + check('function', 'consteval int f()', {1: 'f', 2: '1fv'}) check('function', 'decltype(auto) f()', {1: 'f', 2: "1fv"}) From d5da6fdf50a2487287854bc01f575ce6e84a1903 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 24 Jun 2021 19:45:44 +0200 Subject: [PATCH 124/160] C++, support char8_t --- CHANGES | 3 ++- sphinx/domains/cpp.py | 9 +++++---- tests/test_domain_cpp.py | 1 + 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index c862f0cb621..8b3290518d4 100644 --- a/CHANGES +++ b/CHANGES @@ -57,7 +57,8 @@ Features added - ``inline`` variables, - ``consteval`` functions, - - ``constinit`` variables. + - ``constinit`` variables, + - ``char8_t``. Bugs fixed diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 3e5aabc49f6..86c9e69181f 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -319,8 +319,8 @@ # see https://en.cppreference.com/w/cpp/keyword _keywords = [ 'alignas', 'alignof', 'and', 'and_eq', 'asm', 'auto', 'bitand', 'bitor', - 'bool', 'break', 'case', 'catch', 'char', 'char16_t', 'char32_t', 'class', - 'compl', 'concept', 'const', 'consteval', 'constexpr', 'constinit', + 'bool', 'break', 'case', 'catch', 'char', 'char8_t', 'char16_t', 'char32_t', + 'class', 'compl', 'concept', 'const', 'consteval', 'constexpr', 'constinit', 'const_cast', 'continue', 'decltype', 'default', 'delete', 'do', 'double', 'dynamic_cast', 'else', 'enum', 'explicit', 'export', 'extern', 'false', 'float', 'for', 'friend', @@ -427,6 +427,7 @@ 'wchar_t': 'w', 'char32_t': 'Di', 'char16_t': 'Ds', + 'char8_t': 'Du', 'short': 's', 'short int': 's', 'signed short': 's', @@ -4956,8 +4957,8 @@ class DefinitionParser(BaseParser): # those without signedness and size modifiers # see https://en.cppreference.com/w/cpp/language/types _simple_fundemental_types = ( - 'void', 'bool', 'char', 'wchar_t', 'char16_t', 'char32_t', 'int', - 'float', 'double', 'auto' + 'void', 'bool', 'char', 'wchar_t', 'char8_t', 'char16_t', 'char32_t', + 'int', 'float', 'double', 'auto' ) _prefix_keys = ('class', 'struct', 'enum', 'union', 'typename') diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 47e5bf379c2..1060cc26a07 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -126,6 +126,7 @@ def makeIdV1(): id = t.replace(" ", "-").replace("long", "l").replace("int", "i") id = id.replace("bool", "b").replace("char", "c") id = id.replace("wc_t", "wchar_t").replace("c16_t", "char16_t") + id = id.replace("c8_t", "char8_t") id = id.replace("c32_t", "char32_t") return "f__%s" % id From 799c53aa119b94b2f11af2743c87f6cc3bee47e1 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 24 Jun 2021 20:26:22 +0200 Subject: [PATCH 125/160] C++, support explicit() specifier --- CHANGES | 3 +- sphinx/domains/cpp.py | 64 +++++++++++++++++++++++++++++++--------- tests/test_domain_cpp.py | 2 ++ 3 files changed, 54 insertions(+), 15 deletions(-) diff --git a/CHANGES b/CHANGES index 8b3290518d4..aafc2d3dadf 100644 --- a/CHANGES +++ b/CHANGES @@ -58,7 +58,8 @@ Features added - ``inline`` variables, - ``consteval`` functions, - ``constinit`` variables, - - ``char8_t``. + - ``char8_t``, + - ``explicit()`` specifier. Bugs fixed diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 86c9e69181f..854c8f988de 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -2101,16 +2101,38 @@ def _add_anno(signode: TextElement, text: str) -> None: signode += addnodes.desc_sig_keyword(self.initializer, self.initializer) +class ASTExplicitSpec(ASTBase): + def __init__(self, expr: Optional[ASTExpression]) -> None: + self.expr = expr + + def _stringify(self, transform: StringifyTransform) -> str: + res = ['explicit'] + if self.expr is not None: + res.append('(') + res.append(transform(self.expr)) + res.append(')') + return ''.join(res) + + def describe_signature(self, signode: TextElement, + env: "BuildEnvironment", symbol: "Symbol") -> None: + signode += addnodes.desc_sig_keyword('explicit', 'explicit') + if self.expr is not None: + signode += addnodes.desc_sig_punctuation('(', '(') + self.expr.describe_signature(signode, 'markType', env, symbol) + signode += addnodes.desc_sig_punctuation(')', ')') + + class ASTDeclSpecsSimple(ASTBase): def __init__(self, storage: str, threadLocal: bool, inline: bool, virtual: bool, - explicit: bool, consteval: bool, constexpr: bool, constinit: bool, + explicitSpec: Optional[ASTExplicitSpec], + consteval: bool, constexpr: bool, constinit: bool, volatile: bool, const: bool, friend: bool, attrs: List[ASTAttribute]) -> None: self.storage = storage self.threadLocal = threadLocal self.inline = inline self.virtual = virtual - self.explicit = explicit + self.explicitSpec = explicitSpec self.consteval = consteval self.constexpr = constexpr self.constinit = constinit @@ -2126,7 +2148,7 @@ def mergeWith(self, other: "ASTDeclSpecsSimple") -> "ASTDeclSpecsSimple": self.threadLocal or other.threadLocal, self.inline or other.inline, self.virtual or other.virtual, - self.explicit or other.explicit, + self.explicitSpec or other.explicitSpec, self.consteval or other.consteval, self.constexpr or other.constexpr, self.constinit or other.constinit, @@ -2148,8 +2170,8 @@ def _stringify(self, transform: StringifyTransform) -> str: res.append('friend') if self.virtual: res.append('virtual') - if self.explicit: - res.append('explicit') + if self.explicitSpec: + res.append(transform(self.explicitSpec)) if self.consteval: res.append('consteval') if self.constexpr: @@ -2162,7 +2184,8 @@ def _stringify(self, transform: StringifyTransform) -> str: res.append('const') return ' '.join(res) - def describe_signature(self, signode: TextElement) -> None: + def describe_signature(self, signode: TextElement, + env: "BuildEnvironment", symbol: "Symbol") -> None: addSpace = False for attr in self.attrs: if addSpace: @@ -2186,8 +2209,11 @@ def _add(signode: TextElement, text: str) -> bool: addSpace = _add(signode, 'friend') if self.virtual: addSpace = _add(signode, 'virtual') - if self.explicit: - addSpace = _add(signode, 'explicit') + if self.explicitSpec: + if addSpace: + signode += addnodes.desc_sig_space() + self.explicitSpec.describe_signature(signode, env, symbol) + addSpace = True if self.consteval: addSpace = _add(signode, 'consteval') if self.constexpr: @@ -2250,7 +2276,7 @@ def describe_signature(self, signode: TextElement, mode: str, env: "BuildEnvironment", symbol: "Symbol") -> None: verify_description_mode(mode) numChildren = len(signode) - self.leftSpecs.describe_signature(signode) + self.leftSpecs.describe_signature(signode, env, symbol) addSpace = len(signode) != numChildren if self.trailingTypeSpec: @@ -2264,7 +2290,7 @@ def describe_signature(self, signode: TextElement, mode: str, if len(str(self.rightSpecs)) > 0: if addSpace: signode += addnodes.desc_sig_space() - self.rightSpecs.describe_signature(signode) + self.rightSpecs.describe_signature(signode, env, symbol) # Declarator @@ -5944,7 +5970,7 @@ def _parse_decl_specs_simple(self, outer: str, typed: bool) -> ASTDeclSpecsSimpl threadLocal = None inline = None virtual = None - explicit = None + explicitSpec = None consteval = None constexpr = None constinit = None @@ -6008,9 +6034,19 @@ def _parse_decl_specs_simple(self, outer: str, typed: bool) -> ASTDeclSpecsSimpl virtual = self.skip_word('virtual') if virtual: continue - if not explicit: - explicit = self.skip_word('explicit') + if not explicitSpec: + explicit = self.skip_word_and_ws('explicit') if explicit: + expr: ASTExpression = None + if self.skip_string('('): + expr = self._parse_constant_expression(inTemplate=False) + if not expr: + self.fail("Expected constant expression after '('" + + " in explicit specifier.") + self.skip_ws() + if not self.skip_string(')'): + self.fail("Expected ')' to end explicit specifier.") + explicitSpec = ASTExplicitSpec(expr) continue attr = self._parse_attribute() if attr: @@ -6018,7 +6054,7 @@ def _parse_decl_specs_simple(self, outer: str, typed: bool) -> ASTDeclSpecsSimpl continue break return ASTDeclSpecsSimple(storage, threadLocal, inline, virtual, - explicit, consteval, constexpr, constinit, + explicitSpec, consteval, constexpr, constinit, volatile, const, friend, attrs) def _parse_decl_specs(self, outer: str, typed: bool = True) -> ASTDeclSpecs: diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 1060cc26a07..a4990e71ffb 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -571,6 +571,8 @@ def test_domain_cpp_ast_function_definitions(): check('function', 'extern int f()', {1: 'f', 2: '1fv'}) check('function', 'consteval int f()', {1: 'f', 2: '1fv'}) + check('function', 'explicit(true) void f()', {1: 'f', 2: '1fv'}) + check('function', 'decltype(auto) f()', {1: 'f', 2: "1fv"}) # TODO: make tests for functions in a template, e.g., Test From 7bc2e052c54694fea8c257516d90d80db9672322 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 24 Jun 2021 21:12:26 +0200 Subject: [PATCH 126/160] C++, C, support digit separators in literals --- CHANGES | 5 ++++- sphinx/util/cfamily.py | 21 +++++++++++---------- tests/test_domain_c.py | 11 ++++++++--- tests/test_domain_cpp.py | 11 ++++++++--- 4 files changed, 31 insertions(+), 17 deletions(-) diff --git a/CHANGES b/CHANGES index aafc2d3dadf..61d9b494504 100644 --- a/CHANGES +++ b/CHANGES @@ -59,7 +59,10 @@ Features added - ``consteval`` functions, - ``constinit`` variables, - ``char8_t``, - - ``explicit()`` specifier. + - ``explicit()`` specifier, + - digit separators in literals. + +* C, add support for digit separators in literals. Bugs fixed diff --git a/sphinx/util/cfamily.py b/sphinx/util/cfamily.py index 2be2e390f0f..8d089662440 100644 --- a/sphinx/util/cfamily.py +++ b/sphinx/util/cfamily.py @@ -33,10 +33,10 @@ ) [a-zA-Z0-9_]*\b ''') -integer_literal_re = re.compile(r'[1-9][0-9]*') -octal_literal_re = re.compile(r'0[0-7]*') -hex_literal_re = re.compile(r'0[xX][0-9a-fA-F][0-9a-fA-F]*') -binary_literal_re = re.compile(r'0[bB][01][01]*') +integer_literal_re = re.compile(r'[1-9][0-9]*(\'[0-9]+)*') +octal_literal_re = re.compile(r'0[0-7]*(\'[0-7]+)*') +hex_literal_re = re.compile(r'0[xX][0-9a-fA-F]+(\'[0-9a-fA-F]+)*') +binary_literal_re = re.compile(r'0[bB][01]+(\'[01]+)*') integers_literal_suffix_re = re.compile(r'''(?x) # unsigned and/or (long) long, in any order, but at least one of them ( @@ -50,13 +50,14 @@ float_literal_re = re.compile(r'''(?x) [+-]?( # decimal - ([0-9]+[eE][+-]?[0-9]+) - | ([0-9]*\.[0-9]+([eE][+-]?[0-9]+)?) - | ([0-9]+\.([eE][+-]?[0-9]+)?) + ([0-9]+(\'[0-9]+)*[eE][+-]?[0-9]+(\'[0-9]+)*) + | (([0-9]+(\'[0-9]+)*)?\.[0-9]+(\'[0-9]+)*([eE][+-]?[0-9]+(\'[0-9]+)*)?) + | ([0-9]+(\'[0-9]+)*\.([eE][+-]?[0-9]+(\'[0-9]+)*)?) # hex - | (0[xX][0-9a-fA-F]+[pP][+-]?[0-9a-fA-F]+) - | (0[xX][0-9a-fA-F]*\.[0-9a-fA-F]+([pP][+-]?[0-9a-fA-F]+)?) - | (0[xX][0-9a-fA-F]+\.([pP][+-]?[0-9a-fA-F]+)?) + | (0[xX][0-9a-fA-F]+(\'[0-9a-fA-F]+)*[pP][+-]?[0-9a-fA-F]+(\'[0-9a-fA-F]+)*) + | (0[xX]([0-9a-fA-F]+(\'[0-9a-fA-F]+)*)?\. + [0-9a-fA-F]+(\'[0-9a-fA-F]+)*([pP][+-]?[0-9a-fA-F]+(\'[0-9a-fA-F]+)*)?) + | (0[xX][0-9a-fA-F]+(\'[0-9a-fA-F]+)*\.([pP][+-]?[0-9a-fA-F]+(\'[0-9a-fA-F]+)*)?) ) ''') float_literal_suffix_re = re.compile(r'[fFlL]\b') diff --git a/tests/test_domain_c.py b/tests/test_domain_c.py index d57738ec400..575b6536219 100644 --- a/tests/test_domain_c.py +++ b/tests/test_domain_c.py @@ -155,7 +155,8 @@ class Config: # primary exprCheck('true') exprCheck('false') - ints = ['5', '0', '075', '0x0123456789ABCDEF', '0XF', '0b1', '0B1'] + ints = ['5', '0', '075', '0x0123456789ABCDEF', '0XF', '0b1', '0B1', + "0b0'1'0", "00'1'2", "0x0'1'2", "1'2'3"] unsignedSuffix = ['', 'u', 'U'] longSuffix = ['', 'l', 'L', 'll', 'LL'] for i in ints: @@ -170,14 +171,18 @@ class Config: '5e42', '5e+42', '5e-42', '5.', '5.e42', '5.e+42', '5.e-42', '.5', '.5e42', '.5e+42', '.5e-42', - '5.0', '5.0e42', '5.0e+42', '5.0e-42']: + '5.0', '5.0e42', '5.0e+42', '5.0e-42', + "1'2'3e7'8'9", "1'2'3.e7'8'9", + ".4'5'6e7'8'9", "1'2'3.4'5'6e7'8'9"]: expr = e + suffix exprCheck(expr) for e in [ 'ApF', 'Ap+F', 'Ap-F', 'A.', 'A.pF', 'A.p+F', 'A.p-F', '.A', '.ApF', '.Ap+F', '.Ap-F', - 'A.B', 'A.BpF', 'A.Bp+F', 'A.Bp-F']: + 'A.B', 'A.BpF', 'A.Bp+F', 'A.Bp-F', + "A'B'Cp1'2'3", "A'B'C.p1'2'3", + ".D'E'Fp1'2'3", "A'B'C.D'E'Fp1'2'3"]: expr = "0x" + e + suffix exprCheck(expr) exprCheck('"abc\\"cba"') # string diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index a4990e71ffb..cf2774af461 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -174,7 +174,8 @@ class Config: exprCheck('nullptr', 'LDnE') exprCheck('true', 'L1E') exprCheck('false', 'L0E') - ints = ['5', '0', '075', '0x0123456789ABCDEF', '0XF', '0b1', '0B1'] + ints = ['5', '0', '075', '0x0123456789ABCDEF', '0XF', '0b1', '0B1', + "0b0'1'0", "00'1'2", "0x0'1'2", "1'2'3"] unsignedSuffix = ['', 'u', 'U'] longSuffix = ['', 'l', 'L', 'll', 'LL'] for i in ints: @@ -187,11 +188,15 @@ class Config: decimalFloats = ['5e42', '5e+42', '5e-42', '5.', '5.e42', '5.e+42', '5.e-42', '.5', '.5e42', '.5e+42', '.5e-42', - '5.0', '5.0e42', '5.0e+42', '5.0e-42'] + '5.0', '5.0e42', '5.0e+42', '5.0e-42', + "1'2'3e7'8'9", "1'2'3.e7'8'9", + ".4'5'6e7'8'9", "1'2'3.4'5'6e7'8'9"] hexFloats = ['ApF', 'Ap+F', 'Ap-F', 'A.', 'A.pF', 'A.p+F', 'A.p-F', '.A', '.ApF', '.Ap+F', '.Ap-F', - 'A.B', 'A.BpF', 'A.Bp+F', 'A.Bp-F'] + 'A.B', 'A.BpF', 'A.Bp+F', 'A.Bp-F', + "A'B'Cp1'2'3", "A'B'C.p1'2'3", + ".D'E'Fp1'2'3", "A'B'C.D'E'Fp1'2'3"] for suffix in ['', 'f', 'F', 'l', 'L']: for e in decimalFloats: expr = e + suffix From 450d5caa373b8c2b65c16482989d94c744b6cc8d Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 24 Jun 2021 22:32:23 +0200 Subject: [PATCH 127/160] C++, support constrains in placeholders --- CHANGES | 4 +++- sphinx/domains/cpp.py | 32 ++++++++++++++++++++++++++++++-- tests/test_domain_cpp.py | 9 +++++++++ 3 files changed, 42 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 61d9b494504..432e114a0a9 100644 --- a/CHANGES +++ b/CHANGES @@ -60,7 +60,9 @@ Features added - ``constinit`` variables, - ``char8_t``, - ``explicit()`` specifier, - - digit separators in literals. + - digit separators in literals, and + - constraints in placeholder type specifiers, aka. adjective syntax + (e.g., ``Sortable auto &v``). * C, add support for digit separators in literals. diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 854c8f988de..c94f1d06da0 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -1882,9 +1882,11 @@ def describe_signature(self, signode: TextElement, mode: str, class ASTTrailingTypeSpecName(ASTTrailingTypeSpec): - def __init__(self, prefix: str, nestedName: ASTNestedName) -> None: + def __init__(self, prefix: str, nestedName: ASTNestedName, + placeholderType: Optional[str]) -> None: self.prefix = prefix self.nestedName = nestedName + self.placeholderType = placeholderType @property def name(self) -> ASTNestedName: @@ -1899,6 +1901,9 @@ def _stringify(self, transform: StringifyTransform) -> str: res.append(self.prefix) res.append(' ') res.append(transform(self.nestedName)) + if self.placeholderType is not None: + res.append(' ') + res.append(self.placeholderType) return ''.join(res) def describe_signature(self, signode: TextElement, mode: str, @@ -1907,6 +1912,17 @@ def describe_signature(self, signode: TextElement, mode: str, signode += addnodes.desc_sig_keyword(self.prefix, self.prefix) signode += addnodes.desc_sig_space() self.nestedName.describe_signature(signode, mode, env, symbol=symbol) + if self.placeholderType is not None: + signode += addnodes.desc_sig_space() + if self.placeholderType == 'auto': + signode += addnodes.desc_sig_keyword('auto', 'auto') + elif self.placeholderType == 'decltype(auto)': + signode += addnodes.desc_sig_keyword('decltype', 'decltype') + signode += addnodes.desc_sig_punctuation('(', '(') + signode += addnodes.desc_sig_keyword('auto', 'auto') + signode += addnodes.desc_sig_punctuation(')', ')') + else: + assert False, self.placeholderType class ASTFunctionParameter(ASTBase): @@ -5856,7 +5872,19 @@ def _parse_trailing_type_spec(self) -> ASTTrailingTypeSpec: prefix = k break nestedName = self._parse_nested_name() - return ASTTrailingTypeSpecName(prefix, nestedName) + self.skip_ws() + placeholderType = None + if self.skip_word('auto'): + placeholderType = 'auto' + elif self.skip_word_and_ws('decltype'): + if not self.skip_string_and_ws('('): + self.fail("Expected '(' after 'decltype' in placeholder type specifier.") + if not self.skip_word_and_ws('auto'): + self.fail("Expected 'auto' after 'decltype(' in placeholder type specifier.") + if not self.skip_string_and_ws(')'): + self.fail("Expected ')' after 'decltype(auto' in placeholder type specifier.") + placeholderType = 'decltype(auto)' + return ASTTrailingTypeSpecName(prefix, nestedName, placeholderType) def _parse_parameters_and_qualifiers(self, paramMode: str) -> ASTParametersQualifiers: if paramMode == 'new': diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index cf2774af461..1ad216e5ade 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -866,6 +866,15 @@ def test_domain_cpp_ast_templates(): check('type', 'template {key}A', {2: 'I_1CE1A'}, key='using') +def test_domain_cpp_ast_placeholder_types(): + check('function', 'void f(Sortable auto &v)', {1: 'f__SortableR', 2: '1fR8Sortable'}) + check('function', 'void f(const Sortable auto &v)', {1: 'f__SortableCR', 2: '1fRK8Sortable'}) + check('function', 'void f(Sortable decltype(auto) &v)', {1: 'f__SortableR', 2: '1fR8Sortable'}) + check('function', 'void f(const Sortable decltype(auto) &v)', {1: 'f__SortableCR', 2: '1fRK8Sortable'}) + check('function', 'void f(Sortable decltype ( auto ) &v)', {1: 'f__SortableR', 2: '1fR8Sortable'}, + output='void f(Sortable decltype(auto) &v)') + + def test_domain_cpp_ast_requires_clauses(): check('function', 'template requires A auto f() -> void requires B', {4: 'I0EIQaa1A1BE1fvv'}) From c3ad66b010e1f2401fda8be2eedeac5b050335e3 Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Fri, 25 Jun 2021 11:04:11 +0200 Subject: [PATCH 128/160] Fix support for html logo and favicon as url Stripping the url in the context setup means that any later isurl() calls will fail and logo_url will always be a local relative path. --- sphinx/builders/html/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index 85669474eab..41e61c69214 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -468,8 +468,8 @@ def prepare_writing(self, docnames: Set[str]) -> None: else: self.last_updated = None - logo = path.basename(self.config.html_logo) if self.config.html_logo else '' - favicon = path.basename(self.config.html_favicon) if self.config.html_favicon else '' + logo = self.config.html_logo if self.config.html_logo else '' + favicon = self.config.html_favicon if self.config.html_favicon else '' self.relations = self.env.collect_relations() From d3c829efa902f4d9a1d87279769e9c4ae9b81785 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 27 Jun 2021 00:11:14 +0000 Subject: [PATCH 129/160] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 83015 -> 83015 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1707 -> 1707 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70874 -> 70874 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33966 -> 33966 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101504 -> 101504 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74898 -> 74898 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99608 -> 99608 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61290 -> 61290 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 77751 -> 77751 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82763 -> 82763 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 30067 -> 30067 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 79929 -> 79929 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69558 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/sphinx.pot | 42 +++--- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78006 -> 78006 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9559 -> 9559 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58936 -> 58936 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63731 -> 63731 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 42 +++--- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 28 ++-- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 10127 -> 11609 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 137 ++++++++++--------- 112 files changed, 1238 insertions(+), 1237 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 5af7c128af670b9fde7d386f4a1eed67736cfc10..3c6e1e241493ddf2fc1c2527e8e13d8487aca2a0 100644 GIT binary patch delta 20 bcmZp)YqZ;-EWmEAU|?WnXs}sJ;5r`wJQxLy delta 20 bcmZp)YqZ;-EWmD{U|?WnV6j\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1860,7 +1860,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1868,7 +1868,7 @@ msgstr "" msgid "variable" msgstr "متغير" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1881,23 +1881,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "نوع" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "كائن" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 10f71b0c7b4dc09ba8162d8b583244f71545258c..cdfa5e3a5f833fa6567a412bb3038a4ea85b0b11 100644 GIT binary patch delta 18 Zcmey${FQk^C%d_Vfq|8w!Nv)xi~v8~1_}TG delta 18 Zcmey${FQk^C%b`yfq|8Q#l{J#i~v8f1_}TG diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 954d4d7d0e0..c28bc12a811 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 0479ccf2803dc03d50ed81e8cda4f0d47acd6f9a..c653f24ff1685cd90bacf8cbd66b4587a4817c32 100644 GIT binary patch delta 20 ccmbPjKihu8PF{9%1p@;sLxar+cy9{=080`E@Bjb+ delta 20 ccmbPjKihu8PF{8c1p@;s1B=ZEcy9{=07~Zu@Bjb+ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 3a7072f0fe8..24809dd8162 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "প্যারামিটার" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "রিটার্নস" @@ -1859,7 +1859,7 @@ msgstr "রিটার্ন টাইপ" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1867,7 +1867,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "ফাংশন" @@ -1880,23 +1880,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "পাদটীকা" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[ছবি]" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index e8af62d2ee219a1b18b65e43ab22358c4841a25a..a383f2ea1e785a3828464a89e85a8749f4dddbdf 100644 GIT binary patch delta 20 bcmbQMGgoKB5?*$51p@;sLxat$d5bszMo0!S delta 20 bcmbQMGgoKB5?*!#1p@;s1B=b8d5bszMjZw+ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 70fe09c6e4a..b40eb6d61c1 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paràmetres" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorna" @@ -1859,7 +1859,7 @@ msgstr "Tipus de retorn" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membre" @@ -1867,7 +1867,7 @@ msgstr "membre" msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funció" @@ -1880,23 +1880,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipus" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[imatge]" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index b9274605ba0f7af6cf8c55beaaf59275f26a5269..136b7c8e0dd0f5c9d0569f26b97d920c1bf2938d 100644 GIT binary patch delta 20 bcmaDU^ipU;87sTFf`NgRp~2=_);G)mO63Nh delta 20 bcmaDU^ipU;87sSif`NgRfyL%p);G)mO1cK0 diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index c351e10e9cf..30f4607ada7 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Jalajöj" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1859,7 +1859,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1867,7 +1867,7 @@ msgstr "" msgid "variable" msgstr "retal jalöj" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1880,23 +1880,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "Ruwäch" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[wachib'äl: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[wachib'äl]" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index d53e7a31f0d8b7b2056463f2566df8e9eafcf4e1..b77b878ef8a54d9bf675a09a4e480b6807093dea 100644 GIT binary patch delta 20 bcmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vrací" @@ -1860,7 +1860,7 @@ msgstr "Typ návratové hodnoty" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "člen" @@ -1868,7 +1868,7 @@ msgstr "člen" msgid "variable" msgstr "proměnná" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkce" @@ -1881,23 +1881,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Vyvolá" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "třída" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Poznámky pod čarou" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[obrázek: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[obrázek]" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 198e39d2661666116fad6b99a57c4642e7d466e9..be63491e07d8cdfa71431ed2027828402bfa9035 100644 GIT binary patch delta 20 bcmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramedrau" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1860,7 +1860,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "aelod" @@ -1868,7 +1868,7 @@ msgstr "aelod" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "ffwythiant" @@ -1881,23 +1881,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Troednodiadau" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[delwedd: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[delwedd]" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index ba1aed4b94f5985938a0ac222a30381d2bd3310d..6687f0d01f0b040ac539718e9b1f71b7432c7c51 100644 GIT binary patch delta 19 acmdm)u`^?XkpjE9f`NgRp}}HH1rY#5>jka= delta 19 acmdm)u`^?XkpjDcf`NgRfyH7=1rY#5zy+=V diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index f6ee9040372..3690fc2b56b 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -914,7 +914,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1842,12 +1842,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnerer" @@ -1862,7 +1862,7 @@ msgstr "Returtype" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "medlem" @@ -1870,7 +1870,7 @@ msgstr "medlem" msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktion" @@ -1883,23 +1883,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "optæl" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1928,36 +1928,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Template-parametre" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3573,7 +3573,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Fodnoter" @@ -3593,12 +3593,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[billede: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[billede]" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index ab4ab91370c252a975495b87a68be6c0d7a38e72..2ecff5f9ad2c5a4d6df19121613929b4dc7dabcc 100644 GIT binary patch delta 20 ccmZ1)xioUaGAVX*1p@;sLxat0rG5wk08iuxNdN!< delta 20 ccmZ1)xioUaGAVWg1p@;s1B=aTrG5wk08hCGNdN!< diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 3f00caa5550..68d9cfff427 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -914,7 +914,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1842,12 +1842,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Rückgabe" @@ -1862,7 +1862,7 @@ msgstr "Rückgabetyp" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "Member" @@ -1870,7 +1870,7 @@ msgstr "Member" msgid "variable" msgstr "Variable" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "Funktion" @@ -1883,23 +1883,23 @@ msgstr "Makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "Typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1928,36 +1928,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Template Parameter" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Wirft" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "Klasse" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3573,7 +3573,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Fußnoten" @@ -3593,12 +3593,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[Bild: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[Bild]" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 6b7dc88be2eeacb2c22a49ff46356148acde2f4c..66265a9387354cea2521c826156c61b542359213 100644 GIT binary patch delta 22 ecmX@!!Fs%db;H~yc5?*-11m#=%}bgV9|QnqcL@#v delta 22 ecmX@!!Fs%db;H~yb^`?i11kfI%}bgV9|QnqObHGE diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 77704431ac4..68ffe11686d 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -913,7 +913,7 @@ msgid "Failed to read build info file: %r" msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1841,12 +1841,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Παράμετροι" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Επιστρέφει" @@ -1861,7 +1861,7 @@ msgstr "Επιστρεφόμενος τύπος" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "μέλος" @@ -1869,7 +1869,7 @@ msgstr "μέλος" msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "συνάρτηση" @@ -1882,23 +1882,23 @@ msgstr "μακροεντολή" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "ένωση" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "τύπος" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1927,36 +1927,36 @@ msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο % msgid "Citation [%s] is not referenced." msgstr "Η παραπομπή [%s] δεν αναφέρεται." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Παράμετροι Προτύπου" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Προκαλεί" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "κλάση" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "έννοια" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3572,7 +3572,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" @@ -3592,12 +3592,12 @@ msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θ msgid "unknown index entry type %s found" msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[εικόνα: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[εικόνα]" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 55742eeb0ea9167fe695aaa059f3a847f80f3a80..d99a4eb5fe5613ef4c4f7a7e206619fbf0c5882e 100644 GIT binary patch delta 20 ccmZ3@yP9{yWoCAB1p@;sLxat?m@hH`07r`kvj6}9 delta 20 ccmZ3@yP9{yWoC8*1p@;s1B=bKm@hH`07qa3vj6}9 diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 60c70ab8fe2..4c3e8e14c5c 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroj" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1859,7 +1859,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" @@ -1867,7 +1867,7 @@ msgstr "membro" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcio" @@ -1880,23 +1880,23 @@ msgstr "nomaĵo" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klaso" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 306c253b7202e308b7f0e7133c77688e1a74e51a..847438d7d3a1f7fb0da22903adc2a3745524b1be 100644 GIT binary patch delta 22 ecmcb$lI7M)mJNR=vzsdz7+4t^Y-X8qtpNaX%?U{W delta 22 ecmcb$lI7M)mJNR=vl}QF7+4utY-X8qtpNaXq6tX= diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 2a16e3ebd15..56d320d749c 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -917,7 +917,7 @@ 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:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1845,12 +1845,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Devuelve" @@ -1865,7 +1865,7 @@ msgstr "Tipo del valor devuelto" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "miembro" @@ -1873,7 +1873,7 @@ msgstr "miembro" msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "función" @@ -1886,23 +1886,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "unión" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1931,36 +1931,36 @@ msgstr "citación duplicada %s, otra instancia en %s" msgid "Citation [%s] is not referenced." msgstr "Citación [%s] no está referenciada." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parametros de Plantilla" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Lanzamientos" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "clase" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3576,7 +3576,7 @@ 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:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Notas a pie de página" @@ -3596,12 +3596,12 @@ msgstr "la unidad de dimensión %s no es válida. Ignorado." msgid "unknown index entry type %s found" msgstr "tipo de entrada de índice desconocido %s encontrado" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[imagen: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[imagen]" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 69233d02069afc3e9cb4d6cea2e9919352d60a75..3878c5ead13ab5108e677138ab896a218b6ee1be 100644 GIT binary patch delta 22 dcmZ42$+WJMX+xk7ySajaft8`b<_MoK3jkNq2L1p5 delta 22 dcmZ42$+WJMX+xk7yMcm%ft7*9<_MoK3jkN92L1p5 diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 68119c9987c..3623d0301dc 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -914,7 +914,7 @@ msgid "Failed to read build info file: %r" msgstr "Viga ehitamise infofaili lugemisel: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1842,12 +1842,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Tagastab" @@ -1862,7 +1862,7 @@ msgstr "Tagastustüüp" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "liige" @@ -1870,7 +1870,7 @@ msgstr "liige" msgid "variable" msgstr "muutuja" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktsioon" @@ -1883,23 +1883,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "loend" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tüüp" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1928,36 +1928,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Malli parameetrid" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3573,7 +3573,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Joonealused märkused" @@ -3593,12 +3593,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[pilt: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[pilt]" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index d74078e064d9a6fcfd0956e2d818f279e6f5f1bc..0e16d4dbb6121635aaacb0ce5e0675f2dba8b73c 100644 GIT binary patch delta 20 bcmexw^50}bhyc5}f`NgRp~2>80TnI)Pn`xJ delta 20 bcmexw^50}bhyc5Rf`NgRfyL%%0TnI)PjUtz diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index e5245430887..6c22d6a741a 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroak" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Itzultzen du" @@ -1860,7 +1860,7 @@ msgstr "Itzulketa mota" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "partaidea" @@ -1868,7 +1868,7 @@ msgstr "partaidea" msgid "variable" msgstr "aldagaia" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funtzioa" @@ -1881,23 +1881,23 @@ msgstr "makroa" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "mota" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Jaurtitzen du" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klasea" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Oin-oharrak" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[irudia]" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index c8471b991d15e522208b43852597afb46c7a78ec..3da5fb2dc121e3e5dac0e07bc1ed96a470518f45 100644 GIT binary patch delta 22 ecmZpe$<{EFZA0b?c5?*-11m#=%>^q2o&W$_dk7c+ delta 22 ecmZpe$<{EFZA0b?b^`?i11kfI%>^q2o&W$_PzV?R diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 7eced82b8d8..61858d4d958 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 16:47+0000\n" "Last-Translator: Hadi F \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -914,7 +914,7 @@ msgid "Failed to read build info file: %r" msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1842,12 +1842,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است." -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "بازگشت ها" @@ -1862,7 +1862,7 @@ msgstr "نوع برگشتی" msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "عضو" @@ -1870,7 +1870,7 @@ msgstr "عضو" msgid "variable" msgstr "متغیّر" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "تابع" @@ -1883,23 +1883,23 @@ msgstr "ماکرو" msgid "struct" msgstr "ساختار" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "اجتماع" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "شمارش" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "شمارنده" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "گونه" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "مؤلّفه‌ی تابع" @@ -1928,36 +1928,36 @@ msgstr "نقل‌قول %s تکراری، مورد دیگر در %s قرار د msgid "Citation [%s] is not referenced." msgstr "نقل [%s] قول ارجاع داده نشده." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, 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.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "پارامترهای قالب" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "ایجاد" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "کلاس" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "کانسپت" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "مؤلّفه‌ی قالب" @@ -3573,7 +3573,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "به بست عنوانی برخورد که در قسمت، موضوع، جدول، اندرز یا نوارکناری نبود" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "پانویس ها" @@ -3593,12 +3593,12 @@ msgstr "ابعاد واحد %sنامعتبر است و نادیده گرفته msgid "unknown index entry type %s found" msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[تصویر%s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[تصویر]" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index d8434633ae86a549ecfd00170a67f5b3a0448d23..226c9d6f80092339e7ccc61117060b78ab32c6e4 100644 GIT binary patch delta 20 bcmaDL_CRdISvGca1p@;sLxas%*m_t1Pv!>Z delta 20 bcmaDL_CRdISvGb91p@;s1B=a9*m_t1PrC-@ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 06a4a15dd53..261ed56f695 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1859,7 +1859,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1867,7 +1867,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1880,23 +1880,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index c6f5738a947af72b95364df97956b9a88dcf195c..5e0a9719b7df9c563ccc1b083a02df25183c6c72 100644 GIT binary patch delta 22 ecmbPql4a6KmJN?)u$wCw7+4t^Y<@XoWj6qBCkd(m delta 22 ecmbPql4a6KmJN?)up1~C7+4utY<@XoWj6qA{0XW6 diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index a4856303fcf..24479227d8e 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-29 11:52+0000\n" "Last-Translator: Nicolas Friedli \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -935,7 +935,7 @@ msgid "Failed to read build info file: %r" msgstr "Échec de lecture du fichier de configuration de construction : %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1863,12 +1863,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Renvoie" @@ -1883,7 +1883,7 @@ msgstr "Type renvoyé" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membre" @@ -1891,7 +1891,7 @@ msgstr "membre" msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "fonction" @@ -1904,23 +1904,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "énumération" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1949,36 +1949,36 @@ msgstr "citation dupliquée %s, une autre instance dans %s" msgid "Citation [%s] is not referenced." msgstr "La citation [%s] n'est pas référencée" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Paramètres du modèle" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Déclenche" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3594,7 +3594,7 @@ 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:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Notes de bas de page" @@ -3614,12 +3614,12 @@ msgstr "%s est invalide comme unité de dimension. Ignoré." msgid "unknown index entry type %s found" msgstr "le type inconnu d’entrée d’index %s a été trouvé" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[image]" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index c072ec6a4a69780f3ed64191ad09a09d1a19b71b..3794f2808968304a72cabb33142ec22496abfcef 100644 GIT binary patch delta 18 Zcmey${FQk^C%d_Vfq|8w!Nv)xi~v8~1_}TG delta 18 Zcmey${FQk^C%b`yfq|8Q#l{J#i~v8f1_}TG diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 9b98fe14f4f..b9c0072dfc4 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 63e957b8a6d3ded2187a30c5761452da8de3a3b3..2f66987953e8361c44eab13bd7a2c2dd56493dc0 100644 GIT binary patch delta 20 ccmZ3YzC?Y)Q7(3K1p@;sLxas{xNdL&07\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "פרמטרים" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1859,7 +1859,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1867,7 +1867,7 @@ msgstr "" msgid "variable" msgstr "משתנה" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "פונקציה" @@ -1880,23 +1880,23 @@ msgstr "מאקרו" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "מחלקה" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "הערות שוליים" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[תמונה]" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index f317461d1499d193d5a5dacc2a164ef6c61073d3..8393eda20df1ed88d77f83594d71be71f60068e6 100644 GIT binary patch delta 22 dcmbQy#WtghZ9{7(ySajaft8`b=AO=;-vC}72)6(L delta 22 dcmbQy#WtghZ9{7(yMcm%ft7*9=AO=;-vC|n2)6(L diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 813596791ed..1aa91cc14db 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -914,7 +914,7 @@ msgid "Failed to read build info file: %r" msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1842,12 +1842,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "मापदण्ड" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "प्रदत्त " @@ -1862,7 +1862,7 @@ msgstr "प्रदत्त प्रकार " msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "सदस्य" @@ -1870,7 +1870,7 @@ msgstr "सदस्य" msgid "variable" msgstr "चर पद" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "फंक्शन" @@ -1883,23 +1883,23 @@ msgstr "मैक्रो" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "युग्म" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "गणक" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "प्रगणक " -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "प्रकार" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1928,36 +1928,36 @@ msgstr "प्रतिरूप उद्धरण %s, दूसरी प् msgid "Citation [%s] is not referenced." msgstr "उद्धरण [%s] सन्दर्भ कहीं नहीं है" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "नमूना मानदण्ड " -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "देता है " -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "वर्ग" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "अवधारणा " -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3573,7 +3573,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "पाया गया शीर्ष बिंदु किसी भाग, प्रसंग, तालिका, विषय-प्रबोध अथवा पार्श्व-स्थान में नहीं है" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "पाद टिप्पणियां" @@ -3593,12 +3593,12 @@ msgstr "परिमाण मात्रक %s अमान्य है. उ msgid "unknown index entry type %s found" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[चित्र: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[चित्र]" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 3e782aa6218db2df66ddfc09c0e01aa291db3d94..823a2716ff5924ec0c7b252784967a6a2f286e07 100644 GIT binary patch delta 18 Zcmey*{GWM3C%d_Vfq|8w!Nv*si~vDJ1}Fdk delta 18 Zcmey*{GWM3C%b`yfq|8Q#l{Kwi~vCz1}Fdk diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 949b65f54b0..b1eb4553137 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 46db2ff98df440c322b13296c84532d8f6d55d48..c2c0302aea659fa39d764415bd96c053e1058cc9 100644 GIT binary patch delta 22 dcmaFX&iJgIaf6-)ySajaft8`bW>bxg(g0iX2N(bV delta 22 dcmaFX&iJgIaf6-)yMcm%ft7*9W>bxg(g0h>2N(bV diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 46b245c4014..5ca80e3f241 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vraća" @@ -1859,7 +1859,7 @@ msgstr "Vraća tip" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "član" @@ -1867,7 +1867,7 @@ msgstr "član" msgid "variable" msgstr "varijabla" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1880,23 +1880,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parametri predloška" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Baca (iznimke)" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Fusnote" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[slika: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[slika]" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 549fdfadb1796e02db4ef7fde4ad4d0c7e7b81bc..c42ff954ee632067fe8de348d32bba7a4984a9e8 100644 GIT binary patch delta 20 bcmewt{V#gM0V#HK1p@;sLxau7rObr^UC;+~ delta 20 bcmewt{V#gM0V#F^1p@;s1B=barObr^U8M(f diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index a75690e78b3..6f6d51107c9 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -916,7 +916,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1844,12 +1844,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paraméterek" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Visszatérési érték" @@ -1864,7 +1864,7 @@ msgstr "Visszatérés típusa" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "tag" @@ -1872,7 +1872,7 @@ msgstr "tag" msgid "variable" msgstr "változó" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "függvény" @@ -1885,23 +1885,23 @@ msgstr "makró" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "típus" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1930,36 +1930,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Sablonparaméterek" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Dob" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "osztály" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3575,7 +3575,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Lábjegyzetek" @@ -3595,12 +3595,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[image]" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 0c52abb4abf5c1a0c76119bb812b57d97e1ed3a9..f4c212fa7d8fad463bc26e865303243f4408e07d 100644 GIT binary patch delta 22 dcmaELkNMR-<_+@g?B)sv23Cd!o7LJ~G5~JI2vPt5 delta 22 dcmaELkNMR-<_+@g>;?)3237_Zo7LJ~G5~Iy2vPt5 diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 2ea86cc691b..85ba25e59e7 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -915,7 +915,7 @@ msgid "Failed to read build info file: %r" msgstr "Gagal membaca berkas info build: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1843,12 +1843,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Kembali" @@ -1863,7 +1863,7 @@ msgstr "Return type" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "anggota" @@ -1871,7 +1871,7 @@ msgstr "anggota" msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "fungsi" @@ -1884,23 +1884,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipe" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1929,36 +1929,36 @@ msgstr "kutipan rangkap %s, contoh lain dalam %s" msgid "Citation [%s] is not referenced." msgstr "Kutipan [%s] tidak dirujuk." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parameter Templat" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "konsep" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3574,7 +3574,7 @@ 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:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Catatan kaki" @@ -3594,12 +3594,12 @@ msgstr "unit dimensi %s tidak valid. Diabaikan" msgid "unknown index entry type %s found" msgstr "entri indeks tidak diketahui ditemukan tipe %s" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[gambar: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[gambar]" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index b1510e22f6261efcf508b7c7c29c3e7f2a8d782a..31abdf45703d7b854f78d7bf518c4219e31f15c0 100644 GIT binary patch delta 20 bcmaFq|I&YhhXlL1f`NgRp}}T%+k diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index a1d33718e29..e90972806b0 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -915,7 +915,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1843,12 +1843,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Ritorna" @@ -1863,7 +1863,7 @@ msgstr "Tipo di ritorno" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" @@ -1871,7 +1871,7 @@ msgstr "membro" msgid "variable" msgstr "variabile" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funzione" @@ -1884,23 +1884,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1929,36 +1929,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parametri del modello" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Solleva" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "concetto" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3574,7 +3574,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Note a piè di pagina" @@ -3594,12 +3594,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[immagine: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[immagine]" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 95c7ccf05dcb5b40a19fc9d6a18c3c5de0cbd340..ccdb8e05fc71ba1541ae67b6c8829aa129c61923 100644 GIT binary patch delta 22 ecmdmfpJn@fmJNR=vzsdz7+4t^Y-X9Vc{TubK?!F7 delta 22 ecmdmfpJn@fmJNR=vl}QF7+4utY-X9Vc{Tub771qn diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 3eeed7afedb..23116b9a59b 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -925,7 +925,7 @@ msgid "Failed to read build info file: %r" msgstr "build info ファイルの読み込みに失敗しました: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1853,12 +1853,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "パラメータ" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "戻り値" @@ -1873,7 +1873,7 @@ msgstr "戻り値の型" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "のメンバ変数" @@ -1881,7 +1881,7 @@ msgstr "のメンバ変数" msgid "variable" msgstr "変数" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "の関数" @@ -1894,23 +1894,23 @@ msgstr "のマクロ" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "列挙型" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1939,36 +1939,36 @@ msgstr "引用 %s はすでに %s で使われています" msgid "Citation [%s] is not referenced." msgstr "引用 [%s] は参照されていません。" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "テンプレートパラメータ" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "例外" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "クラス" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "コンセプト" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3584,7 +3584,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "セクション、トピック、表、訓戒またはサイドバーにないタイトルノードが見つかりました。" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "注記" @@ -3604,12 +3604,12 @@ msgstr "ディメンション単位 %s が無効です。無視されます。" msgid "unknown index entry type %s found" msgstr "不明なインデックスエントリタイプ %s が見つかりました" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[画像: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[画像]" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 17d97f62e354b4c523e9e8b98d5e8cf5ef2d95f3..2f59ab3eb2e48507362e6cd3789b26b045a30275 100644 GIT binary patch delta 22 ecmX@z#(KJqb;I-(?B)sv23Cd!o9C@qI|~44&IvUD delta 22 ecmX@z#(KJqb;I-(>;?)3237_Zo9C@qI|~44qX{(t diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 9dc29bfcefe..852e3051922 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-12 23:47+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다." -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "매개변수" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "반환값" @@ -1860,7 +1860,7 @@ msgstr "반환 형식" msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "멤버 변수" @@ -1868,7 +1868,7 @@ msgstr "멤버 변수" msgid "variable" msgstr "변수" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "함수" @@ -1881,23 +1881,23 @@ msgstr "매크로" msgid "struct" msgstr "구조체" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "공용체" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "열거형" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "열거자" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "자료형" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "함수 매개변수" @@ -1926,36 +1926,36 @@ msgstr "중복 인용 %s, 다른 인스턴스는 %s에 있음" msgid "Citation [%s] is not referenced." msgstr "인용 [%s]이(가) 참조되지 않았습니다." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, 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.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "템플릿 매개변수" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "예외" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "클래스" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "콘셉트" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "템플릿 매개변수" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 노드가 발견됨" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "각주" @@ -3591,12 +3591,12 @@ msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다." msgid "unknown index entry type %s found" msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[그림: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[그림]" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 43f37b263c1baa0bf008baca490670bad135b90c..069478484b361d8ca2678d69880dd47f5b2e81d3 100644 GIT binary patch delta 20 bcmexk{>Oa7K>>Di1p@;sLxasH1WdRASI-9v delta 20 bcmexk{>Oa7K>>CH1p@;s1B=Zk1WdRASEL6E diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 8a2ab0aebc9..6e7f7fde166 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Grąžinamos reikšmės" @@ -1859,7 +1859,7 @@ msgstr "Grąžinamos reikšmės tipas" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "narys" @@ -1867,7 +1867,7 @@ msgstr "narys" msgid "variable" msgstr "kintamasis" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1880,23 +1880,23 @@ msgstr "makrokomanda" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipas" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Išmeta" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klasė" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Išnašos" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[paveiksliukas]" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 0c4edf17155c0ce883d7b513b1494221d81443d9..c3b9c5caa46a495db9319724fb6c9b58cca2fd9f 100644 GIT binary patch delta 20 bcmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Atgriež" @@ -1858,7 +1858,7 @@ msgstr "Atgriežamais tips" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "loceklis" @@ -1866,7 +1866,7 @@ msgstr "loceklis" msgid "variable" msgstr "mainīgais" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1879,23 +1879,23 @@ msgstr "makross" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tips" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Izmet" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klase" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Vēres" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[attēls: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[attēls]" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 3943b8bf14ab3f25eea5f60906a6548b44c0e4bc..681570b5471b0a2cc876b121c66a89d8562dd42c 100644 GIT binary patch delta 20 ccmX@hf0lp4EoOFe1p@;sLxar^ncpx208N_*B>(^b delta 20 ccmX@hf0lp4EoOED1p@;s1B=ZMncpx208MZQB>(^b diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index dfdd09ac99b..c698dcc9858 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Враќа" @@ -1859,7 +1859,7 @@ msgstr "Повратен тип" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "член" @@ -1867,7 +1867,7 @@ msgstr "член" msgid "variable" msgstr "променлива" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функција" @@ -1880,23 +1880,23 @@ msgstr "макро" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Фрла" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 612b652c580898e5f01911b6d8a00201b2eebf5e..ba7a252e457dc73ab1411315baa2f0f8656ad621 100644 GIT binary patch delta 20 bcmX?TdeC%(gdn@Qf`NgRp}}T(!9|<^LnQ^R delta 20 bcmX?TdeC%(gdn?tf`NgRfyHKd!9|<^Liz=* diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index d076a956c77..55b5e36b3df 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnere" @@ -1858,7 +1858,7 @@ msgstr "Retur type" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "medlem" @@ -1866,7 +1866,7 @@ msgstr "medlem" msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funksjon" @@ -1879,23 +1879,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Fotnoter" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[bilde]" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index fba87fca3c5e8b8e0f321db13a9ef4fad1577f2e..a5657a5f986a0e4fd4237fb4e4d8426cd7d50bba 100644 GIT binary patch delta 20 bcmbQ~Hq&jxaRGL71p@;sLxaud1iXa+OW+2L delta 20 bcmbQ~Hq&jxaRGJ%1p@;s1B=b)1iXa+OSJ}# diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 2093d2b14f5..a2128fe54a8 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returns" @@ -1860,7 +1860,7 @@ msgstr "Return type" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "सदस्य" @@ -1868,7 +1868,7 @@ msgstr "सदस्य" msgid "variable" msgstr "चल" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "फन्क्सन" @@ -1881,23 +1881,23 @@ msgstr "बृहत" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "किसिम" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "कक्षा" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "फूट्नोट्स" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[चित्र]" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 10a8b134f77d23d4e8ecfee83f9b478f15cfbf27..1b5f572cddb2a5ff680fcae406ea24c3745cc60a 100644 GIT binary patch delta 22 dcmdlplX1^X#tj}i?B)sv23Cd!oBefi6#!YK2IT+% delta 22 dcmdlplX1^X#tj}i>;?)3237_ZoBefi6#!X!2IT+% diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 941feb67768..35ded6e10cd 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -916,7 +916,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1844,12 +1844,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returns" @@ -1864,7 +1864,7 @@ msgstr "Return type" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "member" @@ -1872,7 +1872,7 @@ msgstr "member" msgid "variable" msgstr "variabele" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "functie" @@ -1885,23 +1885,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1930,36 +1930,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Sjabloonparameters" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Werpt" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3575,7 +3575,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Voetnoten" @@ -3595,12 +3595,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[afbeelding: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[afbeelding]" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 5f613bc1c7dda9d8949ed2782a250a27a70b78aa..a8711795d5e5eb8443ab6e5a2710d18810353583 100644 GIT binary patch delta 22 dcmezTit+O+#tj)x?B)sv23Cd!oAaGmi~(`t2nzrJ delta 22 dcmezTit+O+#tj)x>;?)3237_ZoAaGmi~(`C2nzrJ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 961560903ae..5fe990ee8f7 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -914,7 +914,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1842,12 +1842,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Zwraca" @@ -1862,7 +1862,7 @@ msgstr "Typ zwracany" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "pole" @@ -1870,7 +1870,7 @@ msgstr "pole" msgid "variable" msgstr "zmienna" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcja" @@ -1883,23 +1883,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "unia" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1928,36 +1928,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "Cytat [%s] nie ma odniesienia." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parametry szablonu" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Wyrzuca" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klasa" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "koncepcja" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3573,7 +3573,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Przypisy" @@ -3593,12 +3593,12 @@ msgstr "%s" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[obraz: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[obraz]" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 1258618884adab04bf68bb376b137dec2ce49698..b7a11cc9f42ef6f458927f8c25e2472627527d91 100644 GIT binary patch delta 18 Zcmeyy{Ec}+C%d_Vfq|8w!Nv(`i~v9Z1`PlJ delta 18 Zcmeyy{Ec}+C%b`yfq|8Q#l{I~i~v8@1`PlJ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 98843dc1701..c398453ac9b 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index f012060d73c493f86ad26176156e6979ca91aea5..f15ab7a62250a91ac85165f5cc7a7c9e8725f9a6 100644 GIT binary patch delta 22 ecmdn_fo10hmJOLJ*v%CT46F\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -916,7 +916,7 @@ msgid "Failed to read build info file: %r" msgstr "Falha ao ler o arquivo de informações de compilação: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1844,12 +1844,12 @@ msgid "" "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.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorna" @@ -1864,7 +1864,7 @@ msgstr "Tipo de retorno" msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" @@ -1872,7 +1872,7 @@ msgstr "membro" msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "função" @@ -1885,23 +1885,23 @@ msgstr "macro" msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "união" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "parâmetro de função" @@ -1930,36 +1930,36 @@ msgstr "citação duplicada %s, outra instância em %s" msgid "Citation [%s] is not referenced." msgstr "citação [%s] não é referenciada." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, 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.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parâmetros do Modelo" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Lança" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "conceito" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "parâmetro de modelo" @@ -3575,7 +3575,7 @@ 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:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Notas de rodapé" @@ -3595,12 +3595,12 @@ msgstr "a unidade de dimensão %s é inválida. Ignorada." msgid "unknown index entry type %s found" msgstr "tipo desconhecido de entrada de índice %s encontrado" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[imagem]" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 8b1c525829e8cbd759ddc6645361adde41c0f96e..4fcfb62a19003a7348df524d88c67f872efffd7f 100644 GIT binary patch delta 20 bcmbQ^Fvnp-f-t+ef`NgRp~2>K;jKIXMAil) delta 20 bcmbQ^Fvnp-f-t**f`NgRfyL%@;jKIXM5_iP diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index a7bf83c419f..397f34c2540 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorno" @@ -1860,7 +1860,7 @@ msgstr "Tipo de retorno" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" @@ -1868,7 +1868,7 @@ msgstr "membro" msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "função" @@ -1881,23 +1881,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Gera" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Notas de rodapé" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[imagem]" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 57ec1cd573e58cafa63e09a0f5233db826a4c4e5..c63c32b2868db5ddd3bed1e179aa7eeb3c78ccfe 100644 GIT binary patch delta 20 bcmX@)cF1jmqbR$%f`NgRp}}Sk(O\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrii" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Întoarce" @@ -1860,7 +1860,7 @@ msgstr "Tipul întors" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membru" @@ -1868,7 +1868,7 @@ msgstr "membru" msgid "variable" msgstr "variabilă" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funcție" @@ -1881,23 +1881,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enumerator" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Generează" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "clasă" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Note de subsol" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[figura: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[figură]" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index d3b9271ed2d8c6e4c34bc570521d3586eab39074..1b598600b2702ec3746d0b3a0492b1d77c9a7233 100644 GIT binary patch delta 22 dcmX@s#CWWUaf6jSySajaft8`bW=DBeB>+_k1}^{r delta 22 dcmX@s#CWWUaf6jSyMcm%ft7*9W=DBeB>+_31}^{r diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 7a510e48912..6aea2a254a9 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -916,7 +916,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1844,12 +1844,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Результат" @@ -1864,7 +1864,7 @@ msgstr "Тип результата" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "поле" @@ -1872,7 +1872,7 @@ msgstr "поле" msgid "variable" msgstr "переменная" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функция" @@ -1885,23 +1885,23 @@ msgstr "макрос" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1930,36 +1930,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Параметры шаблона" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Бросает исключение" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "класс" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "концепт" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3575,7 +3575,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Сноски" @@ -3595,12 +3595,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[рисунок: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[рисунок]" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 5356c376d7e9bb5f9c6efb6e64e6e5b1e0af44c8..3cfce64e1939dfadd3dfc8b3be3390996ce30437 100644 GIT binary patch delta 20 bcmeB|>6h7XfQ{W;!N9=E&|vd%HV<|HLp%lb delta 20 bcmeB|>6h7XfQ{Wi!N9=Ez+&@pHV<|HLlFh_ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 57448a56bf1..aa0c420f6ed 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "පරාමිතීන්" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1859,7 +1859,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "සාමාජික" @@ -1867,7 +1867,7 @@ msgstr "සාමාජික" msgid "variable" msgstr "විචල්‍යය" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "ක්‍රියාව" @@ -1880,23 +1880,23 @@ msgstr "මැක්‍රෝ" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "වර්ගය" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[image]" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 7979c92331a01af53770bf13c30528fcfd8ad385..395c9f1ae2e8d007382a41d49afdc43dded0fe8b 100644 GIT binary patch delta 22 ecmdlspJm&8mJMFh*v%CT46F\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -913,7 +913,7 @@ msgid "Failed to read build info file: %r" msgstr "Čítanie súboru zostavenia info zlyhalo: %r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1841,12 +1841,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'." -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vracia" @@ -1861,7 +1861,7 @@ msgstr "Návratový typ" msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "člen" @@ -1869,7 +1869,7 @@ msgstr "člen" msgid "variable" msgstr "premenná" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcia" @@ -1882,23 +1882,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "parameter funkcie" @@ -1927,36 +1927,36 @@ msgstr "duplicitná citácia %s, ďalší výskyt v %s" msgid "Citation [%s] is not referenced." msgstr "Citácia [%s] nie je odkazovaná." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, 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.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parametre šablóny" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Vyvoláva" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "trieda" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "parameter šablóny" @@ -3572,7 +3572,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Poznámky pod čiarou" @@ -3592,12 +3592,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[obrázok: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[obrázok]" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index e3c73e324fe0cdb4d84299fc99e51aed8a511aad..771801d87b85b0e3c50e9bf36dd4b86907bc4928 100644 GIT binary patch delta 20 bcmeyM^+9Wc1uwg~f`NgRp}}T*UPBH5Nz4Vi delta 20 bcmeyM^+9Wc1uwgSf`NgRfyHKfUPBH5NudS1 diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 38a5d08b120..c9a6a75ae01 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vrne" @@ -1858,7 +1858,7 @@ msgstr "Vrne tip" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "član" @@ -1866,7 +1866,7 @@ msgstr "član" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Opombe" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[slika]" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 298c1a31a24..e199a3fa180 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -916,7 +916,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1856,12 +1856,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1876,7 +1876,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1884,7 +1884,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1897,23 +1897,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1942,36 +1942,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3588,7 +3588,7 @@ msgstr "" msgid "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3607,12 +3607,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 30520f455885a88a6e0fe3c5eebb7798c1f9fa07..4f1c7470d189d6428cfd7e0c4aa27e0e20e442ec 100644 GIT binary patch delta 22 ecmdn?kY(FLmJL4^vYRUy7+4t^Z2rG+dmjLK?Fw-K delta 22 ecmdn?kY(FLmJL4^vKuHE7+4utZ2rG+dmjLK!U}N! diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 091076741da..93ebc862b2f 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 16:11+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -911,7 +911,7 @@ 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:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "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.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametra" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Kthime" @@ -1859,7 +1859,7 @@ msgstr "Lloj kthimi" msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "anëtar" @@ -1867,7 +1867,7 @@ msgstr "anëtar" msgid "variable" msgstr "ndryshore" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funksion" @@ -1880,23 +1880,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "bashkim" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "lloj" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "parametër funksioni" @@ -1925,36 +1925,36 @@ msgstr "citim i përsëdytur %s, tjetër instancë te %s" msgid "Citation [%s] is not referenced." msgstr "Përmendja [%s] s’është në referencë." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, 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.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Parametra Gjedhesh" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klasë" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "parametër gjedheje" @@ -3570,7 +3570,7 @@ 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:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Poshtëshënime" @@ -3590,12 +3590,12 @@ msgstr "njësia e përmasave %s është e pavlefshme. U shpërfill." msgid "unknown index entry type %s found" msgstr "u gjet lloj i panjohur %s zërash treguesi" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[figurë: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[figurë]" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 8af4ee1586fa85efe93eec253341d0693f18775c..3b9dd77fb4d053f64c7203a43c83017140c49226 100644 GIT binary patch delta 20 bcmccab=_-&h%mdkf`NgRp}}TpVH+U;NN@$B delta 20 bcmccab=_-&h%mc>f`NgRfyHKNVH+U;NJRyr diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 7c79134bd92..9247c5ada88 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1840,12 +1840,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Резултат" @@ -1860,7 +1860,7 @@ msgstr "Тип резултата" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1868,7 +1868,7 @@ msgstr "" msgid "variable" msgstr "променљива" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функција" @@ -1881,23 +1881,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1926,36 +1926,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3571,7 +3571,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3591,12 +3591,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[слика: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[слика]" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 9274b8aa57ba684e4d62731fda9b237b9bee7249..31c983f28d4e714b2642be6385014d1f1a7d56b8 100644 GIT binary patch delta 18 Zcmcb}a*<_1C%d_Vfq|8w!Nv&(838-(1|R?c delta 18 Zcmcb}a*<_1C%b`yfq|8Q#l{H-838-O1|R?c diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index a95de8215e2..9a4003be480 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 3fa46543462560b4229691d6bcf18c5d9f29e1d3..deebab2cfda4256edc71448b86e8b4e67efbd598 100644 GIT binary patch delta 18 ZcmX@Za)xC>C%d_Vfq|8w!Nv)D7y&yu1`z-N delta 18 ZcmX@Za)xC>C%b`yfq|8Q#l{JH7y&yD1`z-N diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index a03d76491a4..684d2671897 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 50293a975f81a3f43dd0fe34eef7a91639f61760..cdec75c002d0ffb9b2946a7402363d626cb8d722 100644 GIT binary patch delta 20 bcmdmFy2*6IF9CLQ1p@;sLxatXf*UyjO~D3X delta 20 bcmdmFy2*6IF9CJ~1p@;s1B=a!f*UyjO_l~> diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 2f3bb0a2dc1..0a2505bc5ff 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnerar" @@ -1858,7 +1858,7 @@ msgstr "Returtyp" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "medlem" @@ -1866,7 +1866,7 @@ msgstr "medlem" msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktion" @@ -1879,23 +1879,23 @@ msgstr "makro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Kastar" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Fotnoter" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[image]" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index e5eae30f83e2f558b1a73d94b3f2f90aa270dc40..87e96038fbc735726da027a405b7ffae94c215d7 100644 GIT binary patch delta 18 acmey)@||VEc6M_G0|P5VgN^%kG6DcY$p*jx delta 18 acmey)@||VEc6I{=0|P4qi;eqsG6DcYo(8}G diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 83bbb9a9f97..dd24da2a226 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1859,7 +1859,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1867,7 +1867,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1880,23 +1880,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 965f9e87c9cc3bcc3df223e357afff9364241b4e..8249d0d74a3297491e9030f060bbee620246f4a6 100644 GIT binary patch delta 18 Zcmeyw{E2x&C%d_Vfq|8w!Nv(mi~v7z1_1y7 delta 18 Zcmeyw{E2x&C%b`yfq|8Q#l{Iqi~v7I1_1y7 diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 2ab60f34a68..c79a7839079 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 348581ab8c865f715c82b4cd362fd1e911784c48..dfb060c7d2d6fa667ee2d103f864ed0cb60e109a 100644 GIT binary patch delta 22 ecmdmShIz*s<_&9V+07LU46FV#yRS6LQ delta 22 ecmdmShIz*s<_&9V*$os746F<+HgB$N%>V#yDhUw) diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index bdd8411068c..b9e3bcf751f 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -914,7 +914,7 @@ 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:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1842,12 +1842,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametreler" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Dönüşler" @@ -1862,7 +1862,7 @@ msgstr "Dönüş türü" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "üyesi" @@ -1870,7 +1870,7 @@ msgstr "üyesi" msgid "variable" msgstr "değişkeni" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "işlevi" @@ -1883,23 +1883,23 @@ msgstr "makrosu" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "birliği" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "türü" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1928,36 +1928,36 @@ msgstr "%s kopya alıntısı, %s içindeki diğer örnek" msgid "Citation [%s] is not referenced." msgstr "Alıntı [%s] kaynak gösterilmedi." -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "Şablon Parametreleri" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Şunu verir: " -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "sınıfı" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "kavramı" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3573,7 +3573,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "Dipnotlar" @@ -3593,12 +3593,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[resim: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[resim]" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index cf3476b5d5f9bfff6a2e49948c3947e2558fda42..ef0b9089c7a23a5f94232df64f935a21fc27183f 100644 GIT binary patch delta 20 bcmeA-?Kj=CB!N9=E&|vd7o|(J=OG^gm delta 20 bcmeA-?Kj=B)!N9=Ez+&?^o|(J=OCSd5 diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 9de3de26cf5..5af0c59c9b2 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Повертає" @@ -1859,7 +1859,7 @@ msgstr "Тип повернення" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "член" @@ -1867,7 +1867,7 @@ msgstr "член" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функція" @@ -1880,23 +1880,23 @@ msgstr "макрос" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "клас" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 7847c942917bacee58c37d0943e1e815d0de6545..9f3f8bf8356099ab44f85c66a3969118635e7415 100644 GIT binary patch delta 18 Zcmeys{DFBwC%d_Vfq|8w!Nv&*i~v6=1^WO1 delta 18 Zcmeys{DFBwC%b`yfq|8Q#l{H\n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1838,12 +1838,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" @@ -1858,7 +1858,7 @@ msgstr "" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" @@ -1866,7 +1866,7 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" @@ -1879,23 +1879,23 @@ msgstr "" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1924,36 +1924,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3569,7 +3569,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3589,12 +3589,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index ddc6246f75041c432ef86aada0ee900e5dfe700b..9a956a143ea38a1d3b0feb6a87e711cdb9576c98 100644 GIT binary patch delta 20 ccmX@7cTR7^B3^cL1p@;sLxasLd6#km08SSM$N&HU delta 20 ccmX@7cTR7^B3^a_1p@;s1B=Zod6#km08Q)$$N&HU diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 5c77411a0ba..7911c1c4280 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1839,12 +1839,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Tham số" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Trả về" @@ -1859,7 +1859,7 @@ msgstr "Kiểu trả về" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "thuộc tính" @@ -1867,7 +1867,7 @@ msgstr "thuộc tính" msgid "variable" msgstr "biến" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "hàm" @@ -1880,23 +1880,23 @@ msgstr "macro" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "kiểu" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1925,36 +1925,36 @@ msgstr "" msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "Ném" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "lớp" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3570,7 +3570,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "" @@ -3590,12 +3590,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 257c8a7140d358d892b715ccce1bde17d3aa1699..bcd58afbead4f504f7877f1a32f645abb6677ef5 100644 GIT binary patch delta 22 ecmezTk@@pS<_$+Dvzsdz7+4t^Y(6ttJrw|d{Rz$h delta 22 ecmezTk@@pS<_$+Dvl}QF7+4utY(6ttJrw|d(h1H0 diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 8bcdb06b30a..e506b97f42b 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" "PO-Revision-Date: 2021-05-16 04:38+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -925,7 +925,7 @@ msgid "Failed to read build info file: %r" msgstr "读取构建信息文件失败:%r" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -1853,12 +1853,12 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "参数" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "返回" @@ -1873,7 +1873,7 @@ msgstr "返回类型" msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "成员" @@ -1881,7 +1881,7 @@ msgstr "成员" msgid "variable" msgstr "变量" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "函数" @@ -1894,23 +1894,23 @@ msgstr "宏" msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" msgstr "联合体" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "枚举" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "枚举子" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" msgstr "类型" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -1939,36 +1939,36 @@ msgstr "重复的引文 %s,已有引文出现在 %s" msgid "Citation [%s] is not referenced." msgstr "引文 [%s] 没有被引用过。" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" msgstr "模板参数" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "抛出" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "类" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" msgstr "" @@ -3584,7 +3584,7 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "在节、话题、表格、警示或边栏以外的位置发现标题节点" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" msgstr "脚注" @@ -3604,12 +3604,12 @@ msgstr "无效的量纲单位 %s,已忽略。" msgid "unknown index entry type %s found" msgstr "发现未知的索引条目类型 %s" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[图片: %s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[图片]" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 9a3372bfa3a..0f4ecf3376a 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -4,31 +4,31 @@ Documentation.addTranslations({ "%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s\u3002", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s\u3002", - ", in ": " \u65bc ", + ", in ": "\uff0c\u65bc ", "About these documents": "\u95dc\u65bc\u9019\u4e9b\u6587\u4ef6", - "Automatically generated list of changes in version %(version)s": "\u81ea\u52d5\u7522\u751f\u7684 %(version)s \u7248\u672c\u6539\u8b8a\u5217\u8868", - "C API changes": "C API \u6539\u8b8a", - "Changes in Version %(version)s — %(docstitle)s": "\u65bc %(version)s \u7248\u672c\u4e2d\u7684\u6240\u6709\u66f4\u8b8a — %(docstitle)s", + "Automatically generated list of changes in version %(version)s": "\u81ea\u52d5\u7522\u751f\u7684 %(version)s \u7248\u672c\u8b8a\u66f4\u5217\u8868", + "C API changes": "C API \u7684\u8b8a\u66f4", + "Changes in Version %(version)s — %(docstitle)s": "\u65bc %(version)s \u7248\u672c\u4e2d\u7684\u6240\u6709\u8b8a\u66f4 — %(docstitle)s", "Collapse sidebar": "\u6536\u5408\u5074\u908a\u6b04", "Complete Table of Contents": "\u5b8c\u6574\u76ee\u9304", "Contents": "\u5167\u5bb9", "Copyright": "\u7248\u6b0a\u6240\u6709", - "Created using Sphinx %(sphinx_version)s.": "", + "Created using Sphinx %(sphinx_version)s.": "\u4f7f\u7528 Sphinx %(sphinx_version)s \u5efa\u7acb\u3002", "Expand sidebar": "\u5c55\u958b\u5074\u908a\u6b04", "Full index on one page": "\u55ae\u9801\u5b8c\u6574\u7d22\u5f15", "General Index": "\u7e3d\u7d22\u5f15", "Global Module Index": "\u5168\u57df\u6a21\u7d44\u7d22\u5f15", - "Go": "\u641c", + "Go": "\u524d\u5f80", "Hide Search Matches": "\u96b1\u85cf\u7b26\u5408\u641c\u5c0b", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", - "Index pages by letter": "\u7d22\u5f15\u9801\u9762\u6309\u5b57\u6bcd", + "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", - "Library changes": "\u7a0b\u5f0f\u5eab\u7684\u6539\u8b8a", + "Library changes": "\u7a0b\u5f0f\u5eab\u7684\u8b8a\u66f4", "Navigation": "\u700f\u89bd", "Next topic": "\u4e0b\u500b\u4e3b\u984c", - "Other changes": "\u5176\u4ed6\u6539\u8b8a", + "Other changes": "\u5176\u4ed6\u8b8a\u66f4", "Overview": "\u6982\u8981", "Permalink to this definition": "\u672c\u5b9a\u7fa9\u7684\u6c38\u4e45\u9023\u7d50", "Permalink to this headline": "\u672c\u6a19\u984c\u7684\u6c38\u4e45\u9023\u7d50", @@ -42,21 +42,21 @@ Documentation.addTranslations({ "Search finished, found %s page(s) matching the search query.": "\u641c\u5c0b\u5b8c\u6210\uff0c\u5171\u627e\u5230 %s \u9801\u9762\u6eff\u8db3\u641c\u5c0b\u689d\u4ef6\u3002", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u5c0b", "Searching": "\u641c\u5c0b\u4e2d", - "Searching for multiple words only shows matches that contain\n all words.": "", + "Searching for multiple words only shows matches that contain\n all words.": "\u641c\u5c0b\u591a\u500b\u95dc\u9375\u5b57\u6642\uff0c\u53ea\u6703\u986f\u793a\u5305\u542b\u6240\u6709\u95dc\u9375\u5b57\u7684\u7d50\u679c\u3002", "Show Source": "\u986f\u793a\u539f\u59cb\u78bc", - "Table of Contents": "", + "Table of Contents": "\u76ee\u9304", "This Page": "\u672c\u9801", "Welcome! This is": "\u6b61\u8fce\uff01\u672c", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u4f60\u7684\u641c\u5c0b\u627e\u4e0d\u5230\u4efb\u4f55\u6eff\u8db3\u689d\u4ef6\u7684\u6587\u4ef6\u3002\u8acb\u78ba\u5b9a\u662f\u5426\u6240\u6709\u7684\u641c\u5c0b\u8a5e\u90fd\u6b63\u78ba\u5730\u62fc\u5beb\u4e14\u4f60\u5df2\u9078\u64c7\u8db3\u5920\u7684\u5206\u985e\u3002", "all functions, classes, terms": "\u6240\u6709\u51fd\u5f0f\u3001\u985e\u5225\u3001\u8853\u8a9e", "can be huge": "\u53ef\u80fd\u6703\u5f88\u5927", "last updated": "\u6700\u5f8c\u66f4\u65b0\u65bc", - "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u6bb5\u843d\u8207\u5b50\u6bb5\u843d", + "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u7ae0\u7bc0\u8207\u5c0f\u7bc0", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", - "quick access to all modules": "\u5feb\u901f\u524d\u5f80\u6240\u6709\u7684\u6a21\u7d44", + "quick access to all modules": "\u8fc5\u901f\u627e\u5230\u6240\u6709\u6a21\u7d44", "search": "\u641c\u5c0b", - "search this documentation": "\u641c\u5c0b\u672c\u8aaa\u660e\u6587\u4ef6", + "search this documentation": "\u641c\u5c0b\u9019\u4efd\u8aaa\u660e\u6587\u4ef6", "the documentation for": "\u8aaa\u660e\u6587\u4ef6\u4ecb\u7d39" }, "plural_expr": "0" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 3796654ed87ade51543c4744e31cd0d8b82ae167..f3c264ffcf94e69a0a92a6b285cf475a0e4d6714 100644 GIT binary patch delta 4915 zcmb`{YjBj+8Nl%q12G{{kb4A^H%Pc8;a&l`hyo=l0wV&g#p=4*BwLf+u=_5754tf5 zNk}kp7J`8gKqAmYE=~-EB!H-6u{vHx>x`|Jwq|#;t+x?7wsmy+f3gqMFScLG0KaoT z&w0*!wtm(7_Xa;2I$)RK&)fVP%fHqnsr~0q?ls2n*W~fvK%9@`@K#L00&Vx;FzPm5 zht)U)_n?ex$5iY@8Fv9k8WS|Xryv7A#cT09v@nf|ER=^b@fMVY?nEYg}cpgs26*vYT#u30oHY`jAU1d+LB2VRdYC<~lH+3-cY z0bj?v@vkViwvcEC;Zl@9SD_r_A(Ra_qO7w8NrI`wpmaP*K^AU8N$nw&NV`x{cM-3` z548R<4xoMsW!^tfHoA(zl9^;R17-efH6Mx9Y``q^3?u(!-89f3ksm<0vv!pB(i+Oys$ z>Q$@NgP6zsE|h@!Fen>;OM%0gWWFf*dh<})Z^a~Bsjk)b4O(}rWhk$uT>ILdodAFdqj@()WMYq50T#x6GI6wnTwVM2cvu& zV^P|3wSAV>7i<4=b$w7fiZF!<9<6UyrJqBXZOBtMC)Br*ESgIwCmfR#58OftBnRcE zd@f2Lw__@loD@38U~>(I7-dX_H2~Q%+&T}DBs2kt>2v&+LLN$W&5o%pSR5Av$sq( zR3o$gB=et+goTYVTj9PceD)uG$APC-JSr` zy&lWs+H6~8jv|*SaM%u0;P$zkwtEv*uQO1}910$4fwB?~WV=YPRp9bFeeN=wRLJ7l z{#?u3e<-)dZ#z6rm*w`*`h!VMx9#X3&e%o&Yj6qKEBVn?L;FVlI=e97AxgF{yPQT- z9g2-Eyn2o`efrHaria$0XAHV2Z{`fC{$y_Gk@Qg`*VwL2E{~P(4_FI|{efbK z*I69!bR18wO&CX#qI({X)|`n{9Ql#2bk>;HlHvn8z8v#fLgE)ab)lXc4kz^;-yYff ze5g2MLJCW0ZD+=u%N=iL*!T3FJs;h9^#Ac8TjB1mXnXA^6_uf-nYq_QPdwgxuGYi} zc{4{R^&Rc*J8~$rBXdSlxMoNATt(Rd2$TO)Pks$gb1$n()?Bz1@xB`p2kiMUOo>>*b`r zgQ32*me7T)VWH2m+OpU!+SFtC*L$|wg!i_DD?7q1wUMp0S_z#V*SNf)IefA<+`1=R zQ5)Oc9NW<;Q8ZPO<8Xajr1`Pf!4uKeu5jJfa6@~frXtc@b7h#^TW3S0rCD;a;>M+E zdymKJ9ygJr2P6B=ckH^cH6a)|Tp2#!X`*L(qFr^pr?>Z>t{?+f>a|+$>!^w}HvQm9 zMH;JmyHA<$@w!NLgNaq`=xeQ#_r#Ww`ue`}C#eu(Z`a{)RadnBT%@r_o>6?D9Gp96 z#LYi8ByzMV`dsUOTO?GPU7i`PIveh(*L+8g9SS!ejqZFpx^sX0GDDwa=MRpyABdi) z=&P;@pRA`4S~%gk^!V3m`p$2SRqT({oC{ZB`r6tePdyP&L~nO(^!YP}+Y47eWBT8mk&EXm_%}sx^r-*< delta 3543 zcmYM#3s98T8OHImfK;g(MUezWmy4(<77Q9S#?f5N&BW-?Buytx5f-Hu*5ayTXY7J8 zf~bY*hp`d@ni!kJK(wn3-bk(5blR~=TkN!zFm1vvU^BHf$yA%R)Bh9ROm}2|-+9mN zJ(q9&<5LYQ!oA4}dmW!n{wDF)Gfbube_Fom+$f4KqNB2n`i4ySw*7h~KlL-k8h z@rRMQToHZ=SEI)H78YW))t^8u=scz|zw72f16)H*cmvZhj#i22$0VGFN^lNp1&<=R zxFXbqC8+-EP&>B~mC$a~4mD#Oc3Alsh7$-}YmHD5{zoQ07d0pE zm4Qo;oZV_vqE)D)*=q56)Ydm!{4lCrWGws7v+J_JdpMo)6;xsg$wMm`f!d)|RAPSA z0P|2QU5dKAPhuKwG#gQO=7@P7Z=-w#@5WD)*?+BQK403(<(Q3MN5!l8(n^|8M{y9f z)vuyfbkxdcto{OyC;ls||1)abk8lxwhC0IeG}4Y2g?Z3QzJctrD@U#LyQm4CMNQaX z@qNe`?f`0l* zDzSL>TbFYrYT#Vd5f-BQFGJm-Rj8eN5;a}`bwm}Y#Ojg$Vb@@R{a8pvtCfF;+L=Ef zi*p~M-uoMnN(-Cl04I5h@6sp7d1{4mDp9hmIrO|r>Lz; z;)?QyxG|`+%`)ej_oLc>4YiU=q^sMCO5lg6i8@e;oWPTIh=;w$YR~UEuJ!YXh)};UqK}{Z!-Ho zn};O?w9=q8s6kCoXXU+CZo$RGUqc<)fO!Mee)yE3iBeGINyuW|42$1~ns_-X;m5;P zQH~mLy_KuYT2#aDqdFe6@)6W~-eu*Vq3+COv&Z}p^>$oE9gWXFG+rud!QosUH1Q(L z!sVz5*P|wU7PXQ+sCLcf>!|oC)Wq+g>VJ)j_hK&o6;(fh|0onsN0oDtBMQ3$3p|9{ zs+B_(uEN}5wwaygZ_KNhN56P(vJx*qO>{5n?yN-Ju}v1QMX!f1>Mxrg;2p%Tp%R|PwrQvCF&{zg#1mFtW99FlCay8-a3u4)1`D*{1C(F3@<*tF zKSsT;|FL)+%hEt2P%9mSwU~~2-(NxfGIpTej+3aj>usyQgnB)Hk6|vZ`+x@x=;P-} z0}e;6AO#hlYVld9U%~}ezZ4TFuS6yKII8_OQLo_|t8YLh)Px$p4fTuo##GK<9nKO^ zMi;EXd#L#PR_-(ZVe$W>CLESCl;|y}g-k*9Ta23MK691DpE1i&{VQ_Ve?4rriW;k^ zLk;i)jK?;MzihVS4B~I0+WiG}7yf4DB$lt8NyS8*gnIq5Q1dN7^}DCQ0*_hXDO86w zsM}m=~cW-ehu+Tpze@;PO{@lER0)N5n3+EON zwOd}iA(U5CRb08@+r^<^)k6Qn!HV)N#r~q=b%70Q%l(VWXNT5(9*S&E-{tdir(BH0 z`_KA(e(!w7;lxArUuS(^XEiyv(&A9DD=n`Il!VGR1zfaa zcdV|_4c6`%IK0EVnY-C*oOyq8tmDK$11(XQ&) s&gxjp&i>}@-qBe(@l5OW%(^p?v7+^DUP0dY(Srw-q+^p}dpq6#08!ft!2kdN diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index a2bd1ea675f..291a5da5436 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -9,13 +9,14 @@ # Hsiaoming Yang , 2018 # Liang-Bo Wang , 2016 # Liang-Bo Wang , 2016-2017 +# Steven Hsu , 2021 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-20 00:08+0000\n" -"PO-Revision-Date: 2021-05-11 13:54+0000\n" -"Last-Translator: Komiya Takeshi \n" +"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"PO-Revision-Date: 2021-06-21 00:58+0000\n" +"Last-Translator: Steven Hsu \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -916,7 +917,7 @@ msgid "Failed to read build info file: %r" msgstr "" #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 -#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 +#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102 #: sphinx/writers/texinfo.py:233 #, python-format msgid "%b %d, %Y" @@ -940,7 +941,7 @@ msgstr "上一頁" #: sphinx/builders/html/__init__.py:643 msgid "generating indices" -msgstr "" +msgstr "正在產生索引" #: sphinx/builders/html/__init__.py:658 msgid "writing additional pages" @@ -1844,27 +1845,27 @@ msgid "" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 +#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 +#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" -msgstr "傳回" +msgstr "回傳" #: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" -msgstr "傳回型態" +msgstr "回傳型態" #: sphinx/domains/c.py:3207 #, python-format msgid "%s (C %s)" -msgstr "" +msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 +#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 msgid "member" msgstr "成員函數" @@ -1872,7 +1873,7 @@ msgstr "成員函數" msgid "variable" msgstr "變數" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 +#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "函式" @@ -1883,27 +1884,27 @@ msgstr "巨集" #: sphinx/domains/c.py:3718 msgid "struct" -msgstr "" +msgstr "結構" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 +#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 msgid "union" -msgstr "" +msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 +#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 +#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 +#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 msgid "type" -msgstr "類型" +msgstr "型別" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 +#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 msgid "function parameter" -msgstr "" +msgstr "函式參數" #: sphinx/domains/changeset.py:28 #, python-format @@ -1923,45 +1924,45 @@ msgstr "%s 版後已棄用" #: sphinx/domains/citation.py:75 #, python-format msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "重複引用 %s,亦出現於 %s" #: sphinx/domains/citation.py:86 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 +#: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133 #, python-format msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." msgstr "" -#: sphinx/domains/cpp.py:6846 +#: sphinx/domains/cpp.py:6934 msgid "Template Parameters" -msgstr "範本參數" +msgstr "模板參數" -#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 +#: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218 msgid "Throws" msgstr "拋出" -#: sphinx/domains/cpp.py:6968 +#: sphinx/domains/cpp.py:7056 #, python-format msgid "%s (C++ %s)" -msgstr "" +msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 +#: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328 #: sphinx/domains/python.py:1109 msgid "class" msgstr "類別" -#: sphinx/domains/cpp.py:7492 +#: sphinx/domains/cpp.py:7580 msgid "concept" -msgstr "concept" +msgstr "概念" -#: sphinx/domains/cpp.py:7497 +#: sphinx/domains/cpp.py:7585 msgid "template parameter" -msgstr "" +msgstr "模板參數" #: sphinx/domains/javascript.py:136 #, python-format @@ -2003,7 +2004,7 @@ msgstr "成員函式" #: sphinx/domains/javascript.py:329 sphinx/domains/python.py:1108 msgid "data" -msgstr "data" +msgstr "資料" #: sphinx/domains/javascript.py:330 sphinx/domains/python.py:1114 msgid "attribute" @@ -2022,7 +2023,7 @@ msgstr "" #: sphinx/domains/math.py:65 #, python-format msgid "duplicate label of equation %s, other instance in %s" -msgstr "重覆公式標籤 %s,亦出現於 %s" +msgstr "重複公式標籤 %s,亦出現於 %s" #: sphinx/domains/math.py:119 sphinx/writers/latex.py:2070 #, python-format @@ -2059,7 +2060,7 @@ msgstr "變數" #: sphinx/domains/python.py:398 msgid "Raises" -msgstr "丟出" +msgstr "引發" #: sphinx/domains/python.py:618 sphinx/domains/python.py:753 #, python-format @@ -2095,7 +2096,7 @@ msgstr "%s() (%s 的類別成員)" #: sphinx/domains/python.py:760 #, python-format msgid "%s() (%s property)" -msgstr "" +msgstr "%s() (%s 的特性)" #: sphinx/domains/python.py:762 #, python-format @@ -2105,7 +2106,7 @@ msgstr "%s() (%s 的靜態成員)" #: sphinx/domains/python.py:882 #, python-format msgid "%s (%s property)" -msgstr "" +msgstr "%s (%s 的特性)" #: sphinx/domains/python.py:1036 msgid "Python Module Index" @@ -2129,7 +2130,7 @@ msgstr "靜態成員" #: sphinx/domains/python.py:1115 msgid "property" -msgstr "" +msgstr "特性" #: sphinx/domains/python.py:1173 #, python-format @@ -2234,7 +2235,7 @@ msgstr "程式選項" #: sphinx/domains/std.py:569 msgid "document" -msgstr "" +msgstr "文件" #: sphinx/domains/std.py:605 msgid "Module Index" @@ -2248,12 +2249,12 @@ msgstr "搜尋頁面" #: sphinx/ext/autosectionlabel.py:51 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "重複標籤 %s,亦出現於 %s" #: sphinx/domains/std.py:674 #, python-format msgid "duplicate %s description of %s, other instance in %s" -msgstr "" +msgstr "重複 %s 的描述 %s,亦出現於 %s" #: sphinx/domains/std.py:870 msgid "numfig is disabled. :numref: is ignored." @@ -3029,19 +3030,19 @@ msgstr "關鍵字引數" #: sphinx/ext/napoleon/docstring.py:657 msgid "Example" -msgstr "" +msgstr "範例" #: sphinx/ext/napoleon/docstring.py:658 msgid "Examples" -msgstr "" +msgstr "範例" #: sphinx/ext/napoleon/docstring.py:718 msgid "Notes" -msgstr "" +msgstr "備註" #: sphinx/ext/napoleon/docstring.py:727 msgid "Other Parameters" -msgstr "" +msgstr "其他參數" #: sphinx/ext/napoleon/docstring.py:763 msgid "Receives" @@ -3127,15 +3128,15 @@ msgstr "繼續上一頁" #: sphinx/templates/latex/longtable.tex_t:29 #: 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" @@ -3144,7 +3145,7 @@ msgstr "頁" #: sphinx/themes/agogo/layout.html:38 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "目錄" #: sphinx/themes/agogo/layout.html:43 sphinx/themes/basic/layout.html:150 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:22 @@ -3153,7 +3154,7 @@ msgstr "搜尋" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/searchbox.html:16 msgid "Go" -msgstr "搜" +msgstr "前往" #: sphinx/themes/agogo/layout.html:90 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" @@ -3185,11 +3186,11 @@ 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" @@ -3197,7 +3198,7 @@ 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" @@ -3217,7 +3218,7 @@ 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" @@ -3260,7 +3261,7 @@ msgstr "最後更新於 %(last_updated)s。" msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" +msgstr "使用 Sphinx %(sphinx_version)s 建立。" #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -3293,7 +3294,7 @@ msgstr "請啟用 Javascript 以開啟搜尋功能。" msgid "" "Searching for multiple words only shows matches that contain\n" " all words." -msgstr "" +msgstr "搜尋多個關鍵字時,只會顯示包含所有關鍵字的結果。" #: sphinx/themes/basic/search.html:41 msgid "search" @@ -3323,7 +3324,7 @@ msgstr "本頁" #: sphinx/themes/basic/changes/versionchanges.html:12 #, python-format msgid "Changes in Version %(version)s — %(docstitle)s" -msgstr "於 %(version)s 版本中的所有更變 — %(docstitle)s" +msgstr "於 %(version)s 版本中的所有變更 — %(docstitle)s" #: sphinx/themes/basic/changes/rstsource.html:5 #, python-format @@ -3333,19 +3334,19 @@ msgstr "%(filename)s — %(docstitle)s" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format msgid "Automatically generated list of changes in version %(version)s" -msgstr "自動產生的 %(version)s 版本改變列表" +msgstr "自動產生的 %(version)s 版本變更列表" #: sphinx/themes/basic/changes/versionchanges.html:18 msgid "Library changes" -msgstr "程式庫的改變" +msgstr "程式庫的變更" #: sphinx/themes/basic/changes/versionchanges.html:23 msgid "C API changes" -msgstr "C API 改變" +msgstr "C API 的變更" #: sphinx/themes/basic/changes/versionchanges.html:25 msgid "Other changes" -msgstr "其他改變" +msgstr "其他變更" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:434 #: sphinx/writers/html.py:439 sphinx/writers/html5.py:385 @@ -3378,7 +3379,7 @@ msgstr "搜尋完成,共找到 %s 頁面滿足搜尋條件。" #: sphinx/themes/basic/static/searchtools.js:355 msgid ", in " -msgstr " 於 " +msgstr ",於 " #: sphinx/themes/classic/static/sidebar.js_t:83 msgid "Expand sidebar" @@ -3535,7 +3536,7 @@ msgstr "" #: sphinx/writers/html.py:411 sphinx/writers/html5.py:362 msgid "Permalink to this term" -msgstr "" +msgstr "本術語的永久連結" #: sphinx/writers/html.py:443 sphinx/writers/html5.py:394 msgid "Permalink to this table" @@ -3575,10 +3576,10 @@ msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 +#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246 #: sphinx/writers/texinfo.py:637 msgid "Footnotes" -msgstr "頁尾" +msgstr "註解" #: sphinx/writers/latex.py:908 msgid "" @@ -3595,12 +3596,12 @@ msgstr "" msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 +#: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804 #, python-format msgid "[image: %s]" msgstr "[圖片:%s]" -#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 +#: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805 msgid "[image]" msgstr "[圖片]" From 9f04ac8563f678744c8db628acccabb65abcdb4a Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 28 Jun 2021 11:27:06 +0200 Subject: [PATCH 130/160] Simplify logo and favicon assignment --- sphinx/builders/html/__init__.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index 41e61c69214..ad8436c9324 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -468,9 +468,6 @@ def prepare_writing(self, docnames: Set[str]) -> None: else: self.last_updated = None - logo = self.config.html_logo if self.config.html_logo else '' - favicon = self.config.html_favicon if self.config.html_favicon else '' - self.relations = self.env.collect_relations() rellinks: List[Tuple[str, str, str, str]] = [] @@ -513,8 +510,8 @@ def prepare_writing(self, docnames: Set[str]) -> None: 'rellinks': rellinks, 'builder': self.name, 'parents': [], - 'logo': logo, - 'favicon': favicon, + 'logo': self.config.html_logo or '', + 'favicon': self.config.html_favicon or '', 'html5_doctype': html5_ready and not self.config.html4_writer, } if self.theme: From 6a4c215cf0c0c88b34c7607730e6a940e13804ce Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Mon, 28 Jun 2021 13:28:29 +0200 Subject: [PATCH 131/160] Add unit test for remote logo and fav icon --- tests/roots/test-remote-logo/conf.py | 5 ++++ tests/roots/test-remote-logo/index.rst | 32 ++++++++++++++++++++++++++ tests/test_build_html.py | 10 ++++++++ 3 files changed, 47 insertions(+) create mode 100644 tests/roots/test-remote-logo/conf.py create mode 100644 tests/roots/test-remote-logo/index.rst diff --git a/tests/roots/test-remote-logo/conf.py b/tests/roots/test-remote-logo/conf.py new file mode 100644 index 00000000000..07949ba91fc --- /dev/null +++ b/tests/roots/test-remote-logo/conf.py @@ -0,0 +1,5 @@ +latex_documents = [ + ('index', 'test.tex', 'The basic Sphinx documentation for testing', 'Sphinx', 'report') +] +html_logo = "https://www.python.org/static/img/python-logo.png" +html_favicon = "https://www.python.org/static/favicon.ico" diff --git a/tests/roots/test-remote-logo/index.rst b/tests/roots/test-remote-logo/index.rst new file mode 100644 index 00000000000..48407e643c4 --- /dev/null +++ b/tests/roots/test-remote-logo/index.rst @@ -0,0 +1,32 @@ +The basic Sphinx documentation for testing +========================================== + +Sphinx is a tool that makes it easy to create intelligent and beautiful +documentation for Python projects (or other documents consisting of multiple +reStructuredText sources), written by Georg Brandl. It was originally created +for the new Python documentation, and has excellent facilities for Python +project documentation, but C/C++ is supported as well, and more languages are +planned. + +Sphinx uses reStructuredText as its markup language, and many of its strengths +come from the power and straightforwardness of reStructuredText and its parsing +and translating suite, the Docutils. + +features +-------- + +Among its features are the following: + +* Output formats: HTML (including derivative formats such as HTML Help, Epub + and Qt Help), plain text, manual pages and LaTeX or direct PDF output + using rst2pdf +* Extensive cross-references: semantic markup and automatic links + for functions, classes, 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 module index +* Code handling: automatic highlighting using the Pygments highlighter +* Flexible HTML output using the Jinja 2 templating engine +* Various extensions are available, e.g. for automatic testing of snippets + and inclusion of appropriately formatted docstrings +* Setuptools integration diff --git a/tests/test_build_html.py b/tests/test_build_html.py index c74552d9e83..2e53bdc54a8 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -1330,6 +1330,16 @@ def test_html_remote_images(app, status, warning): assert not (app.outdir / 'python-logo.png').exists() +@pytest.mark.sphinx('html', testroot='remote-logo') +def test_html_remote_logo(app, status, warning): + app.builder.build_all() + + result = (app.outdir / 'index.html').read_text() + assert ('' in result) + assert ('' in result) + assert not (app.outdir / 'python-logo.png').exists() + + @pytest.mark.sphinx('html', testroot='basic') def test_html_sidebar(app, status, warning): ctx = {} From c15c5cf3ee2157c5ae55a01ad4be147a780fe0e7 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Mon, 28 Jun 2021 17:09:50 +0200 Subject: [PATCH 132/160] C++, update env version due to recent changes --- sphinx/domains/cpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index c94f1d06da0..a3e0ae35c7f 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -7895,7 +7895,7 @@ def initStuff(app): return { 'version': 'builtin', - 'env_version': 3, + 'env_version': 4, 'parallel_read_safe': True, 'parallel_write_safe': True, } From 358efdd8f3bed92cac0177fb8f527a43e2e93fe1 Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Mon, 28 Jun 2021 19:30:59 +0200 Subject: [PATCH 133/160] C++, fix name mangling of literals with digit seps --- sphinx/domains/cpp.py | 2 +- tests/test_domain_cpp.py | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index a3e0ae35c7f..09f938401c7 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -869,7 +869,7 @@ def _stringify(self, transform: StringifyTransform) -> str: def get_id(self, version: int) -> str: # TODO: floats should be mangled by writing the hex of the binary representation - return "L%sE" % self.data + return "L%sE" % self.data.replace("'", "") def describe_signature(self, signode: TextElement, mode: str, env: "BuildEnvironment", symbol: "Symbol") -> None: diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 1ad216e5ade..e02cd8c1c59 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -182,9 +182,9 @@ class Config: for u in unsignedSuffix: for l in longSuffix: expr = i + u + l - exprCheck(expr, 'L' + expr + 'E') + exprCheck(expr, 'L' + expr.replace("'", "") + 'E') expr = i + l + u - exprCheck(expr, 'L' + expr + 'E') + exprCheck(expr, 'L' + expr.replace("'", "") + 'E') decimalFloats = ['5e42', '5e+42', '5e-42', '5.', '5.e42', '5.e+42', '5.e-42', '.5', '.5e42', '.5e+42', '.5e-42', @@ -200,10 +200,10 @@ class Config: for suffix in ['', 'f', 'F', 'l', 'L']: for e in decimalFloats: expr = e + suffix - exprCheck(expr, 'L' + expr + 'E') + exprCheck(expr, 'L' + expr.replace("'", "") + 'E') for e in hexFloats: expr = "0x" + e + suffix - exprCheck(expr, 'L' + expr + 'E') + exprCheck(expr, 'L' + expr.replace("'", "") + 'E') exprCheck('"abc\\"cba"', 'LA8_KcE') # string exprCheck('this', 'fpT') # character literals @@ -216,13 +216,13 @@ class Config: exprCheck("{}'{}'".format(p, c), t + val) # user-defined literals for i in ints: - exprCheck(i + '_udl', 'clL_Zli4_udlEL' + i + 'EE') - exprCheck(i + 'uludl', 'clL_Zli5uludlEL' + i + 'EE') + exprCheck(i + '_udl', 'clL_Zli4_udlEL' + i.replace("'", "") + 'EE') + exprCheck(i + 'uludl', 'clL_Zli5uludlEL' + i.replace("'", "") + 'EE') for f in decimalFloats: - exprCheck(f + '_udl', 'clL_Zli4_udlEL' + f + 'EE') - exprCheck(f + 'fudl', 'clL_Zli4fudlEL' + f + 'EE') + exprCheck(f + '_udl', 'clL_Zli4_udlEL' + f.replace("'", "") + 'EE') + exprCheck(f + 'fudl', 'clL_Zli4fudlEL' + f.replace("'", "") + 'EE') for f in hexFloats: - exprCheck('0x' + f + '_udl', 'clL_Zli4_udlEL0x' + f + 'EE') + exprCheck('0x' + f + '_udl', 'clL_Zli4_udlEL0x' + f.replace("'", "") + 'EE') for p, t in charPrefixAndIds: for c, val in chars: exprCheck("{}'{}'_udl".format(p, c), 'clL_Zli4_udlE' + t + val + 'E') From 2aef00d7bd1a40de18cbbecfe89d799e0bfaf79a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 29 Jun 2021 21:48:19 +0900 Subject: [PATCH 134/160] Fix #9384: autodoc_typehints='none' supports typehints for attributes --- CHANGES | 2 + sphinx/ext/autodoc/__init__.py | 26 +++++++------ .../test-ext-autodoc/target/typehints.py | 10 +++++ tests/test_ext_autodoc_configs.py | 38 +++++++++++++++++++ 4 files changed, 65 insertions(+), 11 deletions(-) diff --git a/CHANGES b/CHANGES index 432e114a0a9..75f28ba2cd2 100644 --- a/CHANGES +++ b/CHANGES @@ -37,6 +37,8 @@ Features added * #3014: autodoc: Add :event:`autodoc-process-bases` to modify the base classes of the class definitions * #9272: autodoc: Render enum values for the default argument value better +* #9384: autodoc: ``autodoc_typehints='none'`` now erases typehints for + variables, attributes and properties * #3257: autosummary: Support instance attributes for classes * #9129: html search: Show search summaries when html_copy_source = False * #9307: html search: Prevent corrections and completions in search field diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 7cf06752d7a..1cecb1f797d 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1982,11 +1982,13 @@ def add_directive_header(self, sig: str) -> None: self.add_line(' :annotation: %s' % self.options.annotation, sourcename) else: - # obtain annotation for this data - annotations = get_type_hints(self.parent, None, self.config.autodoc_type_aliases) - if self.objpath[-1] in annotations: - objrepr = stringify_typehint(annotations.get(self.objpath[-1])) - self.add_line(' :type: ' + objrepr, sourcename) + if self.config.autodoc_typehints != 'none': + # obtain annotation for this data + annotations = get_type_hints(self.parent, None, + self.config.autodoc_type_aliases) + if self.objpath[-1] in annotations: + objrepr = stringify_typehint(annotations.get(self.objpath[-1])) + self.add_line(' :type: ' + objrepr, sourcename) try: if self.options.no_value or self.should_suppress_value_header(): @@ -2584,11 +2586,13 @@ def add_directive_header(self, sig: str) -> None: elif self.options.annotation: self.add_line(' :annotation: %s' % self.options.annotation, sourcename) else: - # obtain type annotation for this attribute - annotations = get_type_hints(self.parent, None, self.config.autodoc_type_aliases) - if self.objpath[-1] in annotations: - objrepr = stringify_typehint(annotations.get(self.objpath[-1])) - self.add_line(' :type: ' + objrepr, sourcename) + if self.config.autodoc_typehints != 'none': + # obtain type annotation for this attribute + annotations = get_type_hints(self.parent, None, + self.config.autodoc_type_aliases) + if self.objpath[-1] in annotations: + objrepr = stringify_typehint(annotations.get(self.objpath[-1])) + self.add_line(' :type: ' + objrepr, sourcename) try: if self.options.no_value or self.should_suppress_value_header(): @@ -2672,7 +2676,7 @@ def add_directive_header(self, sig: str) -> None: if inspect.isabstractmethod(self.object): self.add_line(' :abstractmethod:', sourcename) - if safe_getattr(self.object, 'fget', None): + if safe_getattr(self.object, 'fget', None) and self.config.autodoc_typehints != 'none': try: signature = inspect.signature(self.object.fget, type_aliases=self.config.autodoc_type_aliases) diff --git a/tests/roots/test-ext-autodoc/target/typehints.py b/tests/roots/test-ext-autodoc/target/typehints.py index bb56054c30f..9e15043998d 100644 --- a/tests/roots/test-ext-autodoc/target/typehints.py +++ b/tests/roots/test-ext-autodoc/target/typehints.py @@ -1,5 +1,8 @@ from typing import Any, Tuple, Union +CONST1: int +CONST2: int = 1 + def incr(a: int, b: int = 1) -> int: return a + b @@ -11,6 +14,9 @@ def decr(a, b = 1): class Math: + CONST1: int + CONST2: int = 1 + def __init__(self, s: str, o: Any = None) -> None: pass @@ -32,6 +38,10 @@ def horse(self, # type: (...) -> None return + @property + def prop(self) -> int: + return 0 + def tuple_args(x: Tuple[int, Union[int, str]]) -> Tuple[int, int]: pass diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index e0f08ea7701..0f058040437 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -554,10 +554,26 @@ def test_autodoc_typehints_signature(app): '.. py:module:: target.typehints', '', '', + '.. py:data:: CONST1', + ' :module: target.typehints', + ' :type: int', + '', + '', '.. py:class:: Math(s: str, o: Optional[Any] = None)', ' :module: target.typehints', '', '', + ' .. py:attribute:: Math.CONST1', + ' :module: target.typehints', + ' :type: int', + '', + '', + ' .. py:attribute:: Math.CONST2', + ' :module: target.typehints', + ' :type: int', + ' :value: 1', + '', + '', ' .. py:method:: Math.decr(a: int, b: int = 1) -> int', ' :module: target.typehints', '', @@ -574,6 +590,11 @@ def test_autodoc_typehints_signature(app): ' :module: target.typehints', '', '', + ' .. py:property:: Math.prop', + ' :module: target.typehints', + ' :type: int', + '', + '', '.. py:class:: NewAnnotation(i: int)', ' :module: target.typehints', '', @@ -620,10 +641,23 @@ def test_autodoc_typehints_none(app): '.. py:module:: target.typehints', '', '', + '.. py:data:: CONST1', + ' :module: target.typehints', + '', + '', '.. py:class:: Math(s, o=None)', ' :module: target.typehints', '', '', + ' .. py:attribute:: Math.CONST1', + ' :module: target.typehints', + '', + '', + ' .. py:attribute:: Math.CONST2', + ' :module: target.typehints', + ' :value: 1', + '', + '', ' .. py:method:: Math.decr(a, b=1)', ' :module: target.typehints', '', @@ -640,6 +674,10 @@ def test_autodoc_typehints_none(app): ' :module: target.typehints', '', '', + ' .. py:property:: Math.prop', + ' :module: target.typehints', + '', + '', '.. py:class:: NewAnnotation(i)', ' :module: target.typehints', '', From 565c9536e50028937a723a92751eb04e82481653 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 30 Jun 2021 21:23:47 +0900 Subject: [PATCH 135/160] Update CHANGES for PR #9381 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 432e114a0a9..f36e6f81f93 100644 --- a/CHANGES +++ b/CHANGES @@ -78,6 +78,7 @@ Bugs fixed * #9283: autodoc: autoattribute directive failed to generate document for an attribute not having any comment * #9317: html: Pushing left key causes visiting the next page at the first page +* #9381: html: URL for html_favicon and html_log does not work * #9270: html theme : pyramid theme generates incorrect logo links * #9217: manpage: The name of manpage directory that is generated by :confval:`man_make_section_directory` is not correct From a52ccdbfc70f58bbd26dfa784a6df7d21078b073 Mon Sep 17 00:00:00 2001 From: Louis-Justin TALLOT Date: Wed, 30 Jun 2021 19:40:35 +0200 Subject: [PATCH 136/160] Fix quotes in docstring in ext.napoleon --- doc/usage/extensions/napoleon.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/usage/extensions/napoleon.rst b/doc/usage/extensions/napoleon.rst index 3f044d6e637..1aa7c1ca219 100644 --- a/doc/usage/extensions/napoleon.rst +++ b/doc/usage/extensions/napoleon.rst @@ -325,9 +325,9 @@ sure that "sphinx.ext.napoleon" is enabled in `conf.py`:: **If True**:: def __init__(self): - \"\"\" + """ This will be included in the docs because it has a docstring - \"\"\" + """ def __init__(self): # This will NOT be included in the docs From da00466081feedb2e9e0cd771aa95d8bcb22c385 Mon Sep 17 00:00:00 2001 From: Frank Yu Date: Sat, 3 Jul 2021 00:44:10 +0800 Subject: [PATCH 137/160] Update docs for theming --- doc/development/theming.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/development/theming.rst b/doc/development/theming.rst index da2c644b9c6..a63a1d668e8 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -256,6 +256,9 @@ Here is some sample 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') From f6b3f36e23a0cb87e12c25fcd82988f8a1e1bf48 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 3 Jul 2021 17:41:57 +0900 Subject: [PATCH 138/160] doc: Fix the default value of napoleon_preprocess_types is True --- doc/usage/extensions/napoleon.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage/extensions/napoleon.rst b/doc/usage/extensions/napoleon.rst index 3f044d6e637..51fb7317d97 100644 --- a/doc/usage/extensions/napoleon.rst +++ b/doc/usage/extensions/napoleon.rst @@ -509,7 +509,7 @@ sure that "sphinx.ext.napoleon" is enabled in `conf.py`:: .. confval:: napoleon_preprocess_types True to convert the type definitions in the docstrings as references. - Defaults to *True*. + Defaults to *False*. .. versionadded:: 3.2.1 .. versionchanged:: 3.5 From 4aa222e7f9dc48dd016098f8c2bf86402faacd65 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 4 Jul 2021 01:28:35 +0900 Subject: [PATCH 139/160] Fix #9387: xml: XML Builder ignores custom visitors So far, XML builder only allows to switch its translator to custom one. But it does not support to install custom visitor methods. This allows to use them expectedly. --- CHANGES | 1 + sphinx/writers/xml.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 21ba7a067b6..0a012542311 100644 --- a/CHANGES +++ b/CHANGES @@ -88,6 +88,7 @@ Bugs fixed * #9306: Linkcheck reports broken link when remote server closes the connection on HEAD request * #9280: py domain: "exceptions" module is not displayed +* #9387: xml: XML Builder ignores custom visitors * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``) * #8945: when transforming typed fields, call the specified role instead of diff --git a/sphinx/writers/xml.py b/sphinx/writers/xml.py index 19fa3c1efa0..ef261fde22e 100644 --- a/sphinx/writers/xml.py +++ b/sphinx/writers/xml.py @@ -19,7 +19,9 @@ class XMLWriter(BaseXMLWriter): def __init__(self, builder: Builder) -> None: super().__init__() self.builder = builder - self.translator_class = self.builder.get_translator_class() + + # A lambda function to generate translator lazily + self.translator_class = lambda document: self.builder.create_translator(document) def translate(self, *args: Any, **kwargs: Any) -> None: self.document.settings.newlines = \ From 7557e53ab7b120c486b627e6abe0b593e743ad11 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 4 Jul 2021 00:08:49 +0000 Subject: [PATCH 140/160] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 83015 -> 83015 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1707 -> 1707 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70874 -> 70874 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33966 -> 33966 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101504 -> 101504 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74898 -> 74898 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99608 -> 99608 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61290 -> 61290 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 77751 -> 77751 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 82763 -> 82763 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 30067 -> 30067 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 79929 -> 79929 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69558 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/sphinx.pot | 108 +++++++++++----------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9559 -> 9559 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63731 -> 63731 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 11609 -> 11609 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 108 +++++++++++----------- 91 files changed, 2484 insertions(+), 2484 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 3c6e1e241493ddf2fc1c2527e8e13d8487aca2a0..b5718e517a201c351c4bbb5400a63416c3cb7843 100644 GIT binary patch delta 23 ecmZp)YqZ;-Ai!m=Yha>aU|?lnu~|#tIv)T_aRwy- delta 23 ecmZp)YqZ;-Ai!m&Yh\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "تم" @@ -627,7 +627,7 @@ msgstr "تجهيز المستندات" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "نسخ الصور..." @@ -637,7 +637,7 @@ msgstr "نسخ الصور..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -880,7 +880,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "الفهرس العام" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "الفهرس" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "التالي" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "السابق" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "إنشاء الفهرس" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "كتابة صفحات إضافية " -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "نسخ الملفات القابلة للتحميل للنسخ..." -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "غير قادر على نسخ الملف الثابت %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "نسخ ملفات إضافية" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "غير قادر على نسخ المف الإضافي %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "ملف الشعار %r غير موجود" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "ملف الايقونة %r غير موجود" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1833,71 +1833,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "متغير" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "نوع" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3469,11 +3469,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "فشل" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 136b7c8e0dd0f5c9d0569f26b97d920c1bf2938d..9a74aacd4c7c122a671b71b63f0336e7adb50580 100644 GIT binary patch delta 23 ecmaDU^ipU;F)Nq3u7Qbyfq|8Q#pYVpH_QNBeg`)I delta 23 ecmaDU^ipU;F)Npuu93Ndfq|8w!RA`lH_QNBga\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "xk'isïk" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Konojel cholwuj" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "cholwuj" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "jun chïk" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "chi rij kan" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Jalajöj" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "retal jalöj" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index b77b878ef8a54d9bf675a09a4e480b6807093dea..07a650ee70371f9cc0998a59d6f8bef4e673d6c8 100644 GIT binary patch delta 23 ecmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -880,7 +880,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Obecný rejstřík" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "rejstřík" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "další" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" @@ -1833,71 +1833,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vrací" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Typ návratové hodnoty" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "proměnná" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3469,11 +3469,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index be63491e07d8cdfa71431ed2027828402bfa9035..f6390ed9efefb1281d64b8575f40e83b1f05adde 100644 GIT binary patch delta 23 ecmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -880,7 +880,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indecs cyffredinol" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indecs" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "nesaf" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "blaenorol" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Dogfennaeth %s %s " @@ -1833,71 +1833,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramedrau" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "aelod" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3469,11 +3469,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 6687f0d01f0b040ac539718e9b1f71b7432c7c51..69fba294bd6105763b6f3646d497c534e7af9c93 100644 GIT binary patch delta 22 dcmdm)u`^?Xz5\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -76,7 +76,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "færdig" @@ -629,7 +629,7 @@ msgstr "forbereder dokumenter" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ugyldig css_file: %r, ignoreret" @@ -882,7 +882,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -920,152 +920,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d. %b, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Generelt indeks" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "næste" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "kan ikke kopiere statisk fil %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "udgyldig js_file: %r, ignoreret" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "favicon-filen %r findes ikke" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentation" @@ -1835,71 +1835,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnerer" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Returtype" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "optæl" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3471,11 +3471,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 2ecff5f9ad2c5a4d6df19121613929b4dc7dabcc..27fe4af504c504f4c4c42c2026d45d6a9df66cbe 100644 GIT binary patch delta 23 fcmZ1)xioUaVks_jT>}#Z0|P4qi_L4Leh2~pVqOQ~ delta 23 fcmZ1)xioUaVks^&T_bY^0|P5VgUxHDeh2~pVq^#2 diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 68d9cfff427..f2c170525f7 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -76,7 +76,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "erledigt" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -639,7 +639,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -882,7 +882,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -920,152 +920,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "Index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "weiter" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "zurück" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s Dokumentation" @@ -1835,71 +1835,71 @@ msgstr "" msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Rückgabe" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Rückgabetyp" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "Member" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "Variable" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "Typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3471,11 +3471,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 66265a9387354cea2521c826156c61b542359213..9f293d1aadc106dc509faf54580e1b1e5c8a01bf 100644 GIT binary patch delta 25 hcmX@!!Fs%db;GPCE^}Q269oeUD+7zoOPUrR1OR*z38nx5 delta 25 hcmX@!!Fs%db;GPCE;C&ta|HtfD?@|LOPUrR1OR*(38Mf2 diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 68ffe11686d..7aa5720a6ed 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -75,7 +75,7 @@ msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχ msgid "loading translations [%s]... " msgstr "φόρτωση μεταφράσεων [%s]..." -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "ολοκλήρωση" @@ -628,7 +628,7 @@ msgstr "προετοιμασία κειμένων" msgid "duplicated ToC entry found: %s" msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "αντιγραφή εικόνων..." @@ -638,7 +638,7 @@ msgstr "αντιγραφή εικόνων..." msgid "cannot read image file %r: copying it instead" msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,7 @@ msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν msgid "conf value \"version\" should not be empty for EPUB3" msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" @@ -881,7 +881,7 @@ msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefi msgid "The text files are in %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -919,152 +919,152 @@ msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριώ msgid "%b %d, %Y" msgstr "%d %B %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Κεντρικό Ευρετήριοο" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "αντιγραφή αρχείων μεταφόρτωσης..." -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r " -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer." -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Δόθηκε άγνωστο math_renderer %r." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "η εγγραφή html_static_path %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "το αρχείο logo %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "το αρχείο favicon %r δεν υπάρχει" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" @@ -1834,71 +1834,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Παράμετροι" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Επιστρέφει" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "μέλος" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "ένωση" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "τύπος" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3470,11 +3470,11 @@ msgstr "Άγνωστος τύπος αρχείου: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "παράβλεψη" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "αποτυχία" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index d99a4eb5fe5613ef4c4f7a7e206619fbf0c5882e..313e1a20f087b96bc8964e86a4ea4ae9d512c265 100644 GIT binary patch delta 23 fcmZ3@yP9{y1!gXDT>}#Z0|P4qi_N!~FERlDSfd9^ delta 23 fcmZ3@yP9{y1!gWYT_bY^0|P5VgUz>?FERlDSg8j{ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 4c3e8e14c5c..f6075986ab8 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indico universala" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indico" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "sekva" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "antaŭa" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentaro" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametroj" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcio" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 847438d7d3a1f7fb0da22903adc2a3745524b1be..33b75228d153dd1644effda4cdcc21f5bfd3a9c0 100644 GIT binary patch delta 25 hcmcb$lI7M)mJPoqbD8TJm?#(+SQ%JsW|?xW0RW2a3E=<$ delta 25 hcmcb$lI7M)mJPoqbD8NHnJX9=SQ#2@W|?xW0RW2g3Eltz diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 56d320d749c..792a0589c7d 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -79,7 +79,7 @@ msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python msgid "loading translations [%s]... " msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "hecho" @@ -632,7 +632,7 @@ msgstr "preparando documentos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabla de contenido duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "copiando imágenes..." @@ -642,7 +642,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:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,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:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -885,7 +885,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:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -923,152 +923,152 @@ msgstr "Error al leer la información de compilación del fichero: %r" msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice General" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "siguiente" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "generando índices" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "escribiendo páginas adicionales" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "copiando archivos descargables..." -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "no se puede copiar archivo descargable %r: %s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "no se puede copiar archivo estático %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "copiando archivos extras" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "no se puede copiar archivo extra %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, 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:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "La página %s coincide con dos patrones en html_sidebars: %r y %r" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "Ha ocurrido un error al renderizar la pagina %s. Motivo: %r" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "volcar inventario de objetos" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "volcar el índice de búsqueda en %s" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 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:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Desconocido math_renderer %r es dado." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entrada html_extra_path %r no existe" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, 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:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entrada html_static_path %r no existe" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, 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:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "archivo de logo %r no existe" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "el archivo %r usado para el favicon no existe" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "documentación de %s - %s" @@ -1838,71 +1838,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Devuelve" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo del valor devuelto" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "miembro" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "función" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "unión" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3474,11 +3474,11 @@ msgstr "Formato de imagen desconocido: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "caracteres fuente no codificables, reemplazando con \"?\": %r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "omitido" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "fallado" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 3878c5ead13ab5108e677138ab896a218b6ee1be..a88fc6102846f2aaa7d231ecaaa27b4801db74e0 100644 GIT binary patch delta 25 gcmZ42$+WJMX@j2+m$|NiiGqQFm4U_P2%j(u0Bb}CmH+?% delta 25 gcmZ42$+WJMX@j2+mzl1Sxq^X#m7&4r2%j(u0BcGIlK=n! diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 3623d0301dc..5d4d7a6c910 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -76,7 +76,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "valmis" @@ -629,7 +629,7 @@ msgstr "dokumentide ettevalmistamine" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "kujutiste kopeerimine... " @@ -639,7 +639,7 @@ msgstr "kujutiste kopeerimine... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "vigane css_file: %r, eiratakse" @@ -882,7 +882,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:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -920,152 +920,152 @@ msgstr "Viga ehitamise infofaili lugemisel: %r" msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Üldindeks" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "järgmine" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "eelmine" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "indeksite genereerimine" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "täiendavate lehtede kirjutamine" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "allalaaditavate failide kopeerimine..." -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "staatilist faili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "lisafailide kopeerimine" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "lisafaili %r pole võimalik kopeerida" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "Viga ehitamise infofaili kirjutamisel: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "otsinguindeksi tõmmise kirjutamine keelele %s" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "vigane js_file: %r, eiratakse" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path kirjet %r pole olemas" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, 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:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "logofaili %r pole olemas" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "favicon faili %r pole olemas" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" @@ -1835,71 +1835,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Tagastab" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tagastustüüp" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "liige" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "muutuja" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "loend" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tüüp" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3471,11 +3471,11 @@ msgstr "Tundmatu pildivorming: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 3da5fb2dc121e3e5dac0e07bc1ed96a470518f45..c03af4f2b716162a5d5710cc3bb26a61648d2e4a 100644 GIT binary patch delta 25 hcmZpe$<{EFZA01$E^}Q269oeUD+7zo1uF!e003{U2(SPE delta 25 hcmZpe$<{EFZA01$E;C&ta|HtfD?@|L1uF!e003{a2(17B diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 61858d4d958..a5f50ea263f 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 16:47+0000\n" "Last-Translator: Hadi F \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -76,7 +76,7 @@ msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل msgid "loading translations [%s]... " msgstr "بارگذاری ترجمه ها [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "انجام شد" @@ -629,7 +629,7 @@ msgstr "آماده سازی اسناد" msgid "duplicated ToC entry found: %s" msgstr "عنوان تکراری در فهرست مطالب پیدا شد:%s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "در حال رونوشت از تصاویر... " @@ -639,7 +639,7 @@ msgstr "در حال رونوشت از تصاویر... " msgid "cannot read image file %r: copying it instead" msgstr "امکان خواندن پرونده‌ی تصویری %r نبود: در عوض کپی می‌شود" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "مقدار پیکربندی شناسه (\"epub_identifier\") نباید msgid "conf value \"version\" should not be empty for EPUB3" msgstr "مقدار پیکربندی ویراست (\"version\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "پرونده‌ی css نامعتبر%r: نادیده گرفته می‌شود" @@ -882,7 +882,7 @@ msgstr "خطای نوشتن پرونده‌ی ساخت (Makefile) : %s" msgid "The text files are in %(outdir)s." msgstr "پرونده‌ی متنی در پوشه‌ی %(outdir)s است." -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -920,152 +920,152 @@ msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "فهرست کلی" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "فهرست" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "بعدی" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "قبلی" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "تولید نمایه‌ها" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "نوشتن صفحات اضافی" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "رونوشت از پرونده‌های قابل دریافت... " -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "نمی تواند از پرونده‌ی قابل دریافت %r: %s رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, 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:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "رونوشت از پرونده‌های ثابت" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "نمی تواند از پرونده‌ی ثابت %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "رونوشت برداری از پرونده‌های اضافی" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "نمی تواند از پرونده‌ی اضافه‌ی %r رونوشت بگیرد" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "شکست در نوشتن پرونده‌ی اطّلاعات ساخت: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "خطایی در نمایش صفحه‌ی %s رخ داد.\nعلّت: %r" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "خالی کردن فهرست اشیاء" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "خالی کردن نمایه‌ی جستجو در %s" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "پرونده‌ی js نامعتبر%r: نادیده گرفته می‌شود" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "ارا‌ئه کننده‌های ریاضی زیادی ثبت شده‌اند، ولی هیچ کدام انتخاب نشده." -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "نمایش‌دهنده‌ی ریاضی نامشخّص %r داده شده." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "مدخل مسیر اضافی (html_extra_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "مدخل مسیر اضافی (html_extra_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "مدخل مسیر ثابت (html_static_path) %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "مدخل مسیر ثابت (html_static_path) %r درون شاخه‌ی خارجی قرار دارد" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "پرونده‌ی آرم %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "پرونده‌ی آیکون مورد علاقه %r وجود ندارد" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "از نسخه‌ی ۳.۵.۰ به بعد افزودن پیوند همیشگی (html_add_permalinks) منسوخ شده. لطفاً از به جایش html_permalinks و html_permalinks_icon را به کار ببرید." -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "مستندات %s%s" @@ -1835,71 +1835,71 @@ msgstr "گزینه‌ی \":file:\" برای دستورالمعل جدول داد msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, 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.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "بازگشت ها" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "نوع برگشتی" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "عضو" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "متغیّر" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "تابع" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "ماکرو" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "ساختار" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "اجتماع" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "شمارش" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "شمارنده" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "گونه" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "مؤلّفه‌ی تابع" @@ -3471,11 +3471,11 @@ msgstr "قالب تصویر ناشناخته: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "نویسه‌ی منبع غیرقابل رمزگشایی، جایگزین با «؟» : %r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "رد شدن و نادیده انگاشتن" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "شکست خورد" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 226c9d6f80092339e7ccc61117060b78ab32c6e4..6db424ed980d237c850bfec85a656e2b26a04a98 100644 GIT binary patch delta 23 ecmaDL_CRdIDK;*1T>}#Z0|P4qi_KTqdRPErX$O7) delta 23 ecmaDL_CRdIDK;)MT_bY^0|P5VgUwgidRPErZwGq- diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 261ed56f695..aa4834b5ddf 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Yleinen sisällysluettelo" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "hakemisto" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr ">" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "<" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 5e0a9719b7df9c563ccc1b083a02df25183c6c72..db8221b70056637d46a73190fd93999c2d6877c8 100644 GIT binary patch delta 25 hcmbPql4a6KmJRo3aGC2Gm?#(+SQ%JsemP@hHvokd3PJz? delta 25 hcmbPql4a6KmJRo3aGB{EnJX9=SQ#2@emP@hHvokj3O@h< diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 24479227d8e..3821cf0ee08 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -32,7 +32,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-29 11:52+0000\n" "Last-Translator: Nicolas Friedli \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -97,7 +97,7 @@ msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable msgid "loading translations [%s]... " msgstr "chargement des traductions [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "fait" @@ -650,7 +650,7 @@ msgstr "Document en préparation" 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:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "Copie des images... " @@ -660,7 +660,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:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -785,7 +785,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:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "fichier CSS invalide : %r, le fichier sera ignoré" @@ -903,7 +903,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:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -941,152 +941,152 @@ msgstr "Échec de lecture du fichier de configuration de construction : %r" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index général" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "suivant" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "précédent" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "Génération des index" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "écriture des pages additionnelles" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "Copie des fichiers téléchargeables... " -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, 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:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "copie des fichiers statiques" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "impossible de copier le fichier static %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "Copie des fichiers complémentaires" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "copie des fichiers supplémentaires impossible %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, 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:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "la page %s correspond à deux modèles dans html_sidebars: %r et %r" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, 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:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "Export de l'inventaire des objets" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "Export de l'index de recherche dans %s" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "le fichier js_file : %r est invalide, il sera ignoré" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 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:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer saisi %r inconnu." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "l'entrée html_extra_path %r n'existe pas" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "l'entrée html_extra_path %r se trouve à l'intérieur de outdir" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "l'entrée html_static_path %r n'existe pas" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "l'entrée html_static_path %r se trouve à l'intérieur de outdir" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "le fichier de logo %r n'existe pas" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "le fichier de favicon %r n'existe pas " -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Documentation %s %s" @@ -1856,71 +1856,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Renvoie" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Type renvoyé" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variable" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "énumération" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3492,11 +3492,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/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "ignoré" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "échoué" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 3794f2808968304a72cabb33142ec22496abfcef..e9e379e361b8cb7acff53ebffb506dc19c80167c 100644 GIT binary patch delta 21 ccmey${FQk^8<)ARfr)~Fft7*9#tEs608p6*q5uE@ delta 21 ccmey${FQk^8<&}`k-36_ft8`b#tEs608pX^p8x;= diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index b9c0072dfc4..53a4760dd07 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 8393eda20df1ed88d77f83594d71be71f60068e6..69afda8d2820390bdce4f6471db60198fd1ab7ab 100644 GIT binary patch delta 25 gcmbQy#WtghZ9`Khm$|NiiGqQFm4U_Pp3a`%0CIi_PXGV_ delta 25 gcmbQy#WtghZ9`Khmzl1Sxq^X#m7&4rp3a`%0CI#0OaK4? diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 1aa91cc14db..1c4ec65c6ef 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -76,7 +76,7 @@ msgstr "'स्थापना' को जैसा कि अभी कोन msgid "loading translations [%s]... " msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "संपन्न" @@ -629,7 +629,7 @@ msgstr "लेखपत्र बनाए जा रहे हैं" msgid "duplicated ToC entry found: %s" msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." @@ -639,7 +639,7 @@ msgstr "चित्रों की प्रतिलिपि बनाई msgid "cannot read image file %r: copying it instead" msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "ई-पब3 के लिए विन्यास मान \"epub_iden msgid "conf value \"version\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "अमान्य css_file: %r, उपेक्षित" @@ -882,7 +882,7 @@ msgstr "मेकफाइल लिखने में त्रुटि: %s" msgid "The text files are in %(outdir)s." msgstr "पाठ फाइल %(outdir)s में हैं." -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -920,152 +920,152 @@ msgstr "निर्माण सूचनापत्र फाइल को msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुक्रमाणिका" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "अनुक्रमणिका" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "आगामी" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "पूर्ववर्ती" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "अनुक्रमाणिका निर्मित की जा रही है" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "अतिरिक्त फाइलों की प्रतिलिपियां बनाये जा रहे है| " -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "अमान्य js_file: %r, उपेक्षित" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है." -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "अज्ञात math_renderer %r दिया गया." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path का प्रविष्टि %r outdir में है| " -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s दिग्दर्शिका" @@ -1835,71 +1835,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "मापदण्ड" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "प्रदत्त " -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "प्रदत्त प्रकार " -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "चर पद" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "फंक्शन" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "मैक्रो" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "युग्म" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "गणक" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "प्रगणक " -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "प्रकार" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3471,11 +3471,11 @@ msgstr "अज्ञात चित्र प्रारूप: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "असाधनीय स्रोत अक्षर, \"?\" द्वारा बदले जा रहे हैं: %r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "छोड़ा " -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "असफल" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 823a2716ff5924ec0c7b252784967a6a2f286e07..182cf66698d523ad87ef49f881aff17f8d235c36 100644 GIT binary patch delta 21 ccmey*{GWM38<)ARfr)~Fft7*9#tHe108%{$zyJUM delta 21 ccmey*{GWM38<&}`k-36_ft8`b#tHe108&N\n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index c2c0302aea659fa39d764415bd96c053e1058cc9..82c3f898f706f46228e3f1b95e2b6dbf05c95705 100644 GIT binary patch delta 25 gcmaFX&iJgIaf7x7m$|NiiGqQFm4U@(Q;m(%0B_C*umAu6 delta 25 gcmaFX&iJgIaf7x7mzl1Sxq^X#m7&3AQ;m(%0B_U>tpET3 diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 5ca80e3f241..e19ecf50112 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -73,7 +73,7 @@ msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmije msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "napravljeno" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Opceniti abecedni indeks" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "abecedni indeks" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "naprijed" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "nazad" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentacija" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vraća" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Vraća tip" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "član" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "varijabla" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index c42ff954ee632067fe8de348d32bba7a4984a9e8..0ab4bc56f5ab402352b380c24d4ffb5c5eb50a08 100644 GIT binary patch delta 23 ecmewt{V#gMUMVhfT>}#Z0|P4qi_OQS%!L7Rx(Eya delta 23 ecmewt{V#gMUMVg!T_bY^0|P5VgU!dK%!L7Rzz7Kd diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 6f6d51107c9..32579254af6 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -78,7 +78,7 @@ msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem msgid "loading translations [%s]... " msgstr "fordítások betöltése [%s]…" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "kész" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -884,7 +884,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -922,152 +922,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Általános tárgymutató" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "nyitóoldal" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "következő" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "előző" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentáció" @@ -1837,71 +1837,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Paraméterek" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Visszatérési érték" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Visszatérés típusa" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "tag" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "változó" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "függvény" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makró" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "típus" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3473,11 +3473,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index f4c212fa7d8fad463bc26e865303243f4408e07d..f318657c10b7c82b040f657006bae07294b9b388 100644 GIT binary patch delta 25 gcmaELkNMR-<_$9KT;{q4CJF`yRt6TE)!JP$0ENH^>Hq)$ delta 25 gcmaELkNMR-<_$9KTxPmP<_ZP|R)z+f)!JP$0ENZ~=Kufz diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 85ba25e59e7..2c9ffecfce2 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -77,7 +77,7 @@ msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python msgid "loading translations [%s]... " msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "selesai" @@ -630,7 +630,7 @@ msgstr "menyiapkan dokumen" msgid "duplicated ToC entry found: %s" msgstr "entri ToC ganda ditemukan: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "menyalin gambar... " @@ -640,7 +640,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:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,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:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" @@ -883,7 +883,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:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -921,152 +921,152 @@ msgstr "Gagal membaca berkas info build: %r" msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks Umum" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "berikut" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "menghasilkan indeks" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "menulis halaman tambahan" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "menyalin berkas yang dapat diunduh... " -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "tidak dapat menyalin berkas statik %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "menyalin berkas tambahan" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "tidak dapat menyalin berkas ekstra %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "Gagal menulis berkas info build: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, 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:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "menyisihkan persediaan obyek" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file yang salah: %r, mengabaikan" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 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:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer %r yang tidak diketahui diberikan." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "entri html_extra_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "entri html_static_path %r tidak ada" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "berkas logo %r tidak ada" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "berkas favicon %r tidak ada" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Dokumentasi %s %s" @@ -1836,71 +1836,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Kembali" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "anggota" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "fungsi" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipe" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3472,11 +3472,11 @@ msgstr "Format gambar tidak dikenal: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "dilewati" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "gagal" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 31abdf45703d7b854f78d7bf518c4219e31f15c0..a4d82748988c93f0b5289f5455623c82f0ce6a0b 100644 GIT binary patch delta 23 ecmaFq|I&Yhs|1(1u7Qbyfq|8Q#b$qrS^NNFa0fL2 delta 23 ecmaFq|I&Yhs|1&su93Ndfq|8w!DfGnS^NNFb_X&5 diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index e90972806b0..2c798847a0f 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -77,7 +77,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "fatto" @@ -630,7 +630,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -640,7 +640,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -765,7 +765,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -883,7 +883,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -921,152 +921,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indice generale" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indice" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "successivo" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "precedente" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s documentazione" @@ -1836,71 +1836,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Ritorna" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo di ritorno" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variabile" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3472,11 +3472,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index ccdb8e05fc71ba1541ae67b6c8829aa129c61923..3f95d046d8487b10229f9e3c01d5c448ae5956d1 100644 GIT binary patch delta 25 hcmdmfpJn@fmJPoqbD8TJm?#(+SQ%JsW|^{iHUN#&3I6~9 delta 25 hcmdmfpJn@fmJPoqbD8NHnJX9=SQ#2@W|^{iHUN#;3H$&6 diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 23116b9a59b..077f146bc61 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -87,7 +87,7 @@ msgstr "conf.pyにある'setup'はPythonのcallableではありません。定 msgid "loading translations [%s]... " msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "完了" @@ -640,7 +640,7 @@ msgstr "preparing documents" msgid "duplicated ToC entry found: %s" msgstr "Tocエントリーが重複しています: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "画像をコピー中... " @@ -650,7 +650,7 @@ msgstr "画像をコピー中... " msgid "cannot read image file %r: copying it instead" msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -775,7 +775,7 @@ msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"version\" が必要です" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無効な css_file %r は無視されました" @@ -893,7 +893,7 @@ msgstr "Makefile の書き込みエラー: %s" msgid "The text files are in %(outdir)s." msgstr "テキストファイルは%(outdir)sにあります。" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -931,152 +931,152 @@ msgstr "build info ファイルの読み込みに失敗しました: %r" msgid "%b %d, %Y" msgstr "%Y年%m月%d日" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "総合索引" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "次へ" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "前へ" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "索引を生成中" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "追加のページを出力中" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "ダウンロードファイルをコピー中..." -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "ダウンロードファイル %r をコピーできません: %s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "静的ファイル %r をコピーできません" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "extraファイルをコピー中" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "extraファイル %r をコピーできませんでした" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "build info ファイル %r の出力に失敗しました" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r " -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "オブジェクト インベントリを出力" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "%s の検索インデックスを出力" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "無効な js_file %r は無視されました" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "不明な math_renderer %r が指定されました。" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path %r が見つかりません" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path %r がoutdir内に配置されます" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "ロゴファイル %r がありません" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "favicon ファイル %r がありません" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s ドキュメント" @@ -1846,71 +1846,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "パラメータ" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "戻り値" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "戻り値の型" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "のメンバ変数" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "変数" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "列挙型" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3482,11 +3482,11 @@ msgstr "不明な画像フォーマット: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "デコードできないソース文字です。\"?\" に置き換えます: %r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "スキップしました" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "失敗しました" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 2f59ab3eb2e48507362e6cd3789b26b045a30275..e7b829ce712b57501a4b4a4b8277cd2d0d48a89e 100644 GIT binary patch delta 25 hcmX@z#(KJqb;FbuT;{q4CJF`yRt6TE=dD;f3jluA3C#ci delta 25 hcmX@z#(KJqb;FbuTxPmP<_ZP|R)z+f=dD;f3jluG3CaKf diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 852e3051922..c213d880fa8 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-12 23:47+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -74,7 +74,7 @@ msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python msgid "loading translations [%s]... " msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "완료" @@ -627,7 +627,7 @@ msgstr "문서 준비 중" msgid "duplicated ToC entry found: %s" msgstr "중복된 목차 항목 발견: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "이미지를 복사하는 중… " @@ -637,7 +637,7 @@ msgstr "이미지를 복사하는 중… " msgid "cannot read image file %r: copying it instead" msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "설정값 \"epub_identifier\"는 EPUB3의 경우 비워 둘 수 없습 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "잘못된 css_file: %r, 무시합니다" @@ -880,7 +880,7 @@ msgstr "Makefile 쓰기 오류: %s" msgid "The text files are in %(outdir)s." msgstr "텍스트 파일은 %(outdir)s에 있습니다." -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "전체 색인" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "색인" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "다음" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "이전" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "색인 생성 중" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "추가 페이지 작성 중" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "다운로드 가능한 파일을 복사하는 중… " -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, 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:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "정적 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "정적 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "추가 파일을 복사하는 중" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "추가 파일을 복사할 수 없습니다: %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "빌드 정보 파일 쓰기 실패: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "객체 인벤토리 덤프 중" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "%s에서 검색 인덱스 덤프 중" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "잘못된 js_file: %r, 무시합니다" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다." -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 항목 %r이(가) 없습니다" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "로고 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "Favicon 파일 %r이(가) 존재하지 않습니다" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks는 3.5.0 버전부터 더 이상 사용되지 않습니다. 대신 html_permalinks 및 html_permalinks_icon을 사용하십시오." -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s 문서" @@ -1833,71 +1833,71 @@ msgstr "csv-table 지시문의 \":file:\" 옵션은 이제 절대 경로를 소 msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, 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.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "매개변수" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "반환값" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "반환 형식" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "멤버 변수" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "변수" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "구조체" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "공용체" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "열거형" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "열거자" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "자료형" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "함수 매개변수" @@ -3469,11 +3469,11 @@ msgstr "알 수 없는 이미지 형식: %s…" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "건너뜀" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "실패" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 069478484b361d8ca2678d69880dd47f5b2e81d3..d4ff58529d1ac9e93d62f4acfa26b4ae38a11099 100644 GIT binary patch delta 23 ecmexk{>Oa7J^?OsT>}#Z0|P4qi_IqlOt=ASx(A~G delta 23 ecmexk{>Oa7J^?N>T_bY^0|P5VgUu%dOt=ASzz3iJ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 6e7f7fde166..6f7664e3b32 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%Y-%m-%d" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Bendras indeksas" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indeksas" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "kitas" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "praeitas" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Grąžinamos reikšmės" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "narys" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "kintamasis" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipas" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index c3b9c5caa46a495db9319724fb6c9b58cca2fd9f..e4106ce4fd7a6c13346f33fd3a40736771ef92b9 100644 GIT binary patch delta 23 ecmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Vispārējs indekss" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indekss" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "nākošais" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "iepriekšējs" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Atgriež" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Atgriežamais tips" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "loceklis" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "mainīgais" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tips" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 681570b5471b0a2cc876b121c66a89d8562dd42c..5b4c7fbfd8da037b9f5b573267a8a46361289c5b 100644 GIT binary patch delta 23 fcmX@hf0lp4b!IMeT>}#Z0|P4qi_H(2-!KCJU!VuQ delta 23 fcmX@hf0lp4b!ILzT_bY^0|P5VgUt__-!KCJU#17T diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index c698dcc9858..c9d7ca85f94 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Главна содржина" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "содржина" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "следна" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "претходна" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Враќа" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Повратен тип" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "променлива" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "макро" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index ba7a252e457dc73ab1411315baa2f0f8656ad621..bdba537342d42c6229922a4177b98e25ee4edecf 100644 GIT binary patch delta 23 ecmX?TdeC%(s34cQu7Qbyfq|8Q#b$ZIMVtUrss=>> delta 23 ecmX?TdeC%(s34b_u93Ndfq|8w!De~EMVtUrum(Z^ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 55b5e36b3df..3e53a46f0e1 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Hovedindex" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "neste" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "forrige" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnere" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Retur type" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index a5657a5f986a0e4fd4237fb4e4d8426cd7d50bba..5a3549160705159d439fa6294a19c85d470b28c3 100644 GIT binary patch delta 23 ecmbQ~Hq&jx5dki9T>}#Z0|P4qi_PZ*yoCT=jxqL diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index a2128fe54a8..20052964f0e 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -880,7 +880,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुसुची" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1833,71 +1833,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "चल" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "किसिम" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3469,11 +3469,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 1b5f572cddb2a5ff680fcae406ea24c3745cc60a..6c99da9c4c55d71e685d7728cad00ef869404894 100644 GIT binary patch delta 25 gcmdlplX1^X#tp7IT;{q4CJF`yRt6TE{dIB`0BuVLeE\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -78,7 +78,7 @@ msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callabl msgid "loading translations [%s]... " msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "klaar" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -884,7 +884,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -922,152 +922,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Algemene index" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "volgende" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "vorige" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s documentatie" @@ -1837,71 +1837,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Return type" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "member" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variabele" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "type" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3473,11 +3473,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index a8711795d5e5eb8443ab6e5a2710d18810353583..b2af6ad6e228090e43234e72e7dca35d657f71fa 100644 GIT binary patch delta 25 gcmezTit+O+#to@XT;{q4CJF`yRt6TE^PO0X0f|}&qW}N^ delta 25 gcmezTit+O+#to@XTxPmP<_ZP|R)z+f^PO0X0f}G;pa1{> diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 5fe990ee8f7..28ef83d77f4 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -76,7 +76,7 @@ msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego de msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "gotowe" @@ -629,7 +629,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "kopiowanie obrazków..." @@ -639,7 +639,7 @@ msgstr "kopiowanie obrazków..." msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -764,7 +764,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" @@ -882,7 +882,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "Pliki tekstowe są w %(outdir)s." -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -920,152 +920,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks ogólny" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "indeks" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "dalej" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "kopiowanie plików do pobrania..." -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "nie można skopiować pliku statycznego %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "nie można skopiować dodatkowego pliku %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, 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:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "nieprawidłowy js_file: %r, zignorowano" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Podano nieznany math_renderer %r." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "plik favicon %r nie istnieje" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" @@ -1835,71 +1835,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Zwraca" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Typ zwracany" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "pole" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "zmienna" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "unia" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3471,11 +3471,11 @@ msgstr "Nieznany format obrazka: %s..." msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index b7a11cc9f42ef6f458927f8c25e2472627527d91..5407cf7a456b1096705a046a06f0895d9bc1b797 100644 GIT binary patch delta 21 ccmeyy{Ec}+8<)ARfr)~Fft7*9#tCVR08qmQr2qf` delta 21 ccmeyy{Ec}+8<&}`k-36_ft8`b#tCVR08q>Zq5uE@ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index c398453ac9b..6acf8742803 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index f15ab7a62250a91ac85165f5cc7a7c9e8725f9a6..0e2ee124d313d4a83a5e317baf6c14c0bbeb91fd 100644 GIT binary patch delta 25 hcmdn_fo10hmJMkuxXg78OcV?ZtPCtR7pyqh4*-fc3NQcw delta 25 hcmdn_fo10hmJMkuxXg5o%oPj_tPBk{7pyqh4*-fi3M~Kt diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 46775a598cd..5746fdf9671 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -78,7 +78,7 @@ msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocá msgid "loading translations [%s]... " msgstr "carregando traduções [%s]… " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "feito" @@ -631,7 +631,7 @@ msgstr "preparando documentos" msgid "duplicated ToC entry found: %s" msgstr "entrada de tabela de conteúdos duplicada encontrada: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "copiando imagens… " @@ -641,7 +641,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:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,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:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" @@ -884,7 +884,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:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -922,152 +922,152 @@ msgstr "Falha ao ler o arquivo de informações de compilação: %r" msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "gerando índices" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "escrevendo páginas adicionais" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "copiando arquivos baixáveis… " -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, 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:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, 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:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "copiando arquivos estáticos" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, 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:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "copiando arquivos extras" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "não foi possível copiar o arquivo extra %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "Falha ao escrever o arquivo de informações de compilação: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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 compilados: o índice ficará incompleto." -#: sphinx/builders/html/__init__.py:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, 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:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "despejando inventário de objetos" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "despejando índice de pesquisa em %s" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 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:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "math_renderer desconhecido %r é fornecido." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, 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:1229 +#: sphinx/builders/html/__init__.py:1226 #, 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:1238 +#: sphinx/builders/html/__init__.py:1235 #, 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:1242 +#: sphinx/builders/html/__init__.py:1239 #, 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:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "o arquivo logo %r não existe" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "o arquivo favicon %r não existe" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks foi descontinuado desde v3.5.0. Use html_permalinks e html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "documentação %s %s" @@ -1837,71 +1837,71 @@ msgstr "A opção \":file:\" para a diretiva csv-table agora reconhece um caminh msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, 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.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "struct" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "união" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "parâmetro de função" @@ -3473,11 +3473,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/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "ignorado" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "falhou" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 4fcfb62a19003a7348df524d88c67f872efffd7f..1cd09450ae9a88d9dabbeaa71694b1069a844c18 100644 GIT binary patch delta 23 ecmbQ^Fvnp-tT30ku7Qbyfq|8Q#pZP3tvmo#od&xA delta 23 ecmbQ^Fvnp-tT30Eu93Ndfq|8w!RB<~tvmo#qXxJD diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 397f34c2540..bf0e1deb587 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -880,7 +880,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "índice" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "próximo" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "anterior" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" @@ -1833,71 +1833,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Retorno" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipo de retorno" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variável" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "função" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3469,11 +3469,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index c63c32b2868db5ddd3bed1e179aa7eeb3c78ccfe..27a19e17c8c371d9aaaf353538458572f3a43243 100644 GIT binary patch delta 23 ecmX@)cF1jmohX;Nu7Qbyfq|8Q#byuDU%UWYDhD3` delta 23 ecmX@)cF1jmohX-?u93Ndfq|8w!DbK9U%UWYFb5m} diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 555c7beb07c..d40323a6910 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -637,7 +637,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -880,7 +880,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index General" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "următor" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "precedent" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s documentație" @@ -1833,71 +1833,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrii" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Întoarce" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Tipul întors" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "membru" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variabilă" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funcție" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enumerator" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3469,11 +3469,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 1b598600b2702ec3746d0b3a0492b1d77c9a7233..6798729e2b168acfa9ff6a1c4d3cfb685fe4cfda 100644 GIT binary patch delta 25 gcmX@s#CWWUaf7)$m$|NiiGqQFm4U@(M|oBy0B8^f#{d8T delta 25 gcmX@s#CWWUaf7)$mzl1Sxq^X#m7&3AM|oBy0B9Bl!~g&Q diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 6aea2a254a9..1b267eae779 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -78,7 +78,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "готово" @@ -631,7 +631,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "Не получается считать файл изображение %r: скопируйте его" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -884,7 +884,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -922,152 +922,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Алфавитный указатель" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "указатель" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "вперёд" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "документация %s %s" @@ -1837,71 +1837,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Результат" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Тип результата" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "поле" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "переменная" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3473,11 +3473,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 395c9f1ae2e8d007382a41d49afdc43dded0fe8b..8959699fd0d1264c3d68c7a21f8d21f657d3699a 100644 GIT binary patch delta 25 hcmdlspJm&8mJROHxXg78OcV?ZtPCtR2Tn_^1ORq@2&@1A delta 25 hcmdlspJm&8mJROHxXg5o%oPj_tPBk{2Tn_^1ORq}2&n)7 diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 7a3b033f163..a80d1109c57 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -75,7 +75,7 @@ msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho def msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "hotovo" @@ -628,7 +628,7 @@ msgstr "príprava dokumentov" msgid "duplicated ToC entry found: %s" msgstr "nájdená duplicitná položka Obsahu: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "kopírovanie obrázkov…" @@ -638,7 +638,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:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -763,7 +763,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:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "neplatný css_file: %r, ignorovaný" @@ -881,7 +881,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:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -919,152 +919,152 @@ msgstr "Čítanie súboru zostavenia info zlyhalo: %r" msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Všeobecný index" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "ďalší" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "predošlý" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "generovanie indexov" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "zapisovanie dodatočných stránok" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "kopírovanie súborov na stiahnutie…" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, 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:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, 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:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "kopírovanie statických súborov" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "nemožno kopírovať statický súbor %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "kopírovanie extra súborov" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "nemožno kopírovať extra súbor %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "Zápis súboru zostavenia info zlyhal: %r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, 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:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "generovanie inventára objektov…" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "generovanie indexu hľadania v %s" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "neplatné js_file: %r, ignorované" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 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:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "Zdaný neznámy math_renderer %r." -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, 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:1229 +#: sphinx/builders/html/__init__.py:1226 #, 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:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "položka „html_static_path” %r neexistuje" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, 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:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "súbor loga %r neexistuje" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "súbor favicon %r neexistuje" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "html_add_permalinks bolo označené za zastarané od v3.5.0. Prosím, použite namiesto toho html_permalinks a html_permalinks_icon." -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Dokumentácia %s %s" @@ -1834,71 +1834,71 @@ msgstr "voľba \":file:\" direktívy csv-table teraz rozpoznáva absolútnu cest msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, 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.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vracia" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Návratový typ" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "premenná" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "parameter funkcie" @@ -3470,11 +3470,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/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "preskočené" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "zlyhalo" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 771801d87b85b0e3c50e9bf36dd4b86907bc4928..a7d08cfc490675f9aa898d4e98c4b327820b104d 100644 GIT binary patch delta 23 ecmeyM^+9WcDKD3~u7Qbyfq|8Q#b$e6Lk<92eFjqi delta 23 ecmeyM^+9WcDKD3qu93Ndfq|8w!Df42Lk<92g9cCl diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index c9a6a75ae01..ce6ab7ce883 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Splošni abecedni seznam" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "naprej" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "nazaj" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Vrne" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Vrne tip" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "član" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index e199a3fa180..f7a2cecbed7 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -71,7 +71,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -766,7 +766,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -884,7 +884,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -922,152 +922,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1849,71 +1849,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3487,11 +3487,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 3b9dd77fb4d053f64c7203a43c83017140c49226..0e84f9e2c2f09de2cf6d32f51e99fde446b78d84 100644 GIT binary patch delta 23 ecmccab=_-&pfH!Yu7Qbyfq|8Q#b#+?8zBH$@di2o delta 23 ecmccab=_-&pfH!2u93Ndfq|8w!DeY;8zBH$_Xalr diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 9247c5ada88..250cd515925 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -74,7 +74,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "учитавање превода [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "готово" @@ -627,7 +627,7 @@ msgstr "припремање докумената" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "пребацивање слика... " @@ -637,7 +637,7 @@ msgstr "пребацивање слика... " msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -762,7 +762,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -880,7 +880,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -918,152 +918,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "индекс" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "напред" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "назад" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "документација %s %s" @@ -1833,71 +1833,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Резултат" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Тип резултата" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "променљива" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3469,11 +3469,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index deebab2cfda4256edc71448b86e8b4e67efbd598..d54f4aa41a2f40edc1e416f290d955ff97555f30 100644 GIT binary patch delta 21 ccmX@Za)xC>8<)ARfr)~Fft7*9#tC~E0ZRo2sQ>@~ delta 21 ccmX@Za)xC>8<&}`k-36_ft8`b#tC~E0ZR@BrT_o{ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 684d2671897..288cc8a061b 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index cdec75c002d0ffb9b2946a7402363d626cb8d722..d7e67d5149b81fdea980bc66db35fddefd41de79 100644 GIT binary patch delta 23 ecmdmFy2*6IcL6SQT>}#Z0|P4qi_MIJ8#w`Bj|TYw delta 23 ecmdmFy2*6IcL6RlT_bY^0|P5VgUyVB8#w`Bl?L_z diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 0a2505bc5ff..2b64483ada2 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Huvudindex" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "index" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "nästa" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "föregående" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Returnerar" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Returtyp" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "variabel" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 8249d0d74a3297491e9030f060bbee620246f4a6..24d904be5db96b6c341df2b89544b296c7d92516 100644 GIT binary patch delta 21 ccmeyw{E2x&8<)ARfr)~Fft7*9#tBJ`08kqSnE(I) delta 21 ccmeyw{E2x&8<&}`k-36_ft8`b#tBJ`08k_bmH+?% diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index c79a7839079..e5b54a9f6b2 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index ef0b9089c7a23a5f94232df64f935a21fc27183f..a11b4e4b46117cc24f77650fd0da6ffb142a142a 100644 GIT binary patch delta 23 ecmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Загальний індекс" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "індекс" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "наступний" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "попередній" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Повертає" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Тип повернення" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "член" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 9f3f8bf8356099ab44f85c66a3969118635e7415..e3421e728572400bc86ce39b3e1441b6f10e77c1 100644 GIT binary patch delta 21 ccmeys{DFBw8<)ARfr)~Fft7*9#t8|G08hsTlK=n! delta 21 ccmeys{DFBw8<&}`k-36_ft8`b#t8|G08h{ckN^Mx diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 2d0154b3878..6f374e0ea76 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -72,7 +72,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -635,7 +635,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -760,7 +760,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -878,7 +878,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -916,152 +916,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "" @@ -1831,71 +1831,71 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3467,11 +3467,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 9a956a143ea38a1d3b0feb6a87e711cdb9576c98..c84c6bbf00b243a33612e8a62a7aca7dc7847279 100644 GIT binary patch delta 23 fcmX@7cTR7^d|obdT>}#Z0|P4qi_I%}mvRCCU{VKQ delta 23 fcmX@7cTR7^d|oayT_bY^0|P5VgUu^>mvRCCU|0uT diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 7911c1c4280..edc2722f18f 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -73,7 +73,7 @@ msgstr "" msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -636,7 +636,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -761,7 +761,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -879,7 +879,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -917,152 +917,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Chỉ mục chung" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" @@ -1832,71 +1832,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "Tham số" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "Trả về" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "Kiểu trả về" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "thuộc tính" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "biến" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "hàm" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "kiểu" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3468,11 +3468,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index bcd58afbead4f504f7877f1a32f645abb6677ef5..cf5109c86d2e09796b95912ae2037ba440f1d290 100644 GIT binary patch delta 25 hcmezTk@@pS<_(7?bD8TJm?#(+SQ%JsJ~LT86#$vF3T6NR delta 25 hcmezTk@@pS<_(7?bD8NHnJX9=SQ#2@J~LT86#$vL3S$5O diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index e506b97f42b..17d3a93e8c5 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-05-16 04:38+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -87,7 +87,7 @@ msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对 msgid "loading translations [%s]... " msgstr "正在加载翻译 [%s]... " -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "完成" @@ -640,7 +640,7 @@ msgstr "准备文件" msgid "duplicated ToC entry found: %s" msgstr "找到重复的ToC条目: %s" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "复制图像... " @@ -650,7 +650,7 @@ msgstr "复制图像... " msgid "cannot read image file %r: copying it instead" msgstr "无法读取图像文件 %r:直接复制" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -775,7 +775,7 @@ msgstr "对于 EPUB3 格式,配置项“epub_identifier”不能为空" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“version”不能为空" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "无效的 css_file:%r,已忽略" @@ -893,7 +893,7 @@ msgstr "错误写入文件 Makefile: %s" msgid "The text files are in %(outdir)s." msgstr "文本文件保存在 %(outdir)s 目录。" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -931,152 +931,152 @@ msgstr "读取构建信息文件失败:%r" msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "总目录" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "下一页" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "上一页" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "正在生成索引" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "正在写入附加页面" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "复制可下载文件... " -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "无法复制可下载文件 %r:%s" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "无法复制静态文件 %r" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "正在复制额外文件" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "无法复制额外文件 %r" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "写入构建信息文件失败:%r" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, 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:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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 错误。请确保所有包含非 ASCII 字符的配置项是 Unicode 字符串。" -#: sphinx/builders/html/__init__.py:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "渲染页面 %s 时发生了错误。\n原因:%r" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "正在导出对象清单" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "正在导出 %s 的搜索索引" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "无效的 js_file:%r,已忽略" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "注册了多个 math_renderers。但没有选择任何 math_renderer。" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "给定了未知的 math_renderer %r。" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 指向的 %r 不存在" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "html_extra_path 入口 %r 置于输出目录内" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 指向的 %r 不存在" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "html_static_path 入口 %r 置于输出目录内" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "logo文件 %r 不存在" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "网站图标 文件 %r 不存在" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s 文档" @@ -1846,71 +1846,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "参数" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "返回" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "返回类型" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "成员" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "变量" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "联合体" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "枚举" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "枚举子" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "类型" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "" @@ -3482,11 +3482,11 @@ msgstr "未知的图像格式:%s……" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "源码中存在编码无法识别的字符,已经替换为“?”:%r" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "跳过" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "失败" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index f3c264ffcf94e69a0a92a6b285cf475a0e4d6714..f0ccf20836a9b04b94d6986cfcf8746bb0b40609 100644 GIT binary patch delta 23 ecmcZ^bu(&%ge;f2u7Qbyfq|8Q#bza0a{&NeKL&XK delta 23 ecmcZ^bu(&%ge;etu93Ndfq|8w!Db~{a{&NeMFw^N diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 291a5da5436..c300d80b68f 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-06-27 00:10+0000\n" +"POT-Creation-Date: 2021-07-04 00:08+0000\n" "PO-Revision-Date: 2021-06-21 00:58+0000\n" "Last-Translator: Steven Hsu \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -79,7 +79,7 @@ msgstr "目前在 conf.py 裡指定的 'setup' 並非一個 Python 的可呼叫 msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:296 sphinx/util/__init__.py:522 +#: sphinx/application.py:296 sphinx/util/__init__.py:539 msgid "done" msgstr "完成" @@ -632,7 +632,7 @@ msgstr "" msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 +#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 msgid "copying images... " msgstr "" @@ -642,7 +642,7 @@ msgstr "" msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 +#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #, python-format msgid "cannot copy image file %r: %s" @@ -767,7 +767,7 @@ msgstr "" msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 +#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" @@ -885,7 +885,7 @@ msgstr "" msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 +#: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77 #: sphinx/builders/xml.py:91 #, python-format msgid "error writing file %s: %s" @@ -923,152 +923,152 @@ msgstr "" msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "總索引" -#: sphinx/builders/html/__init__.py:478 +#: sphinx/builders/html/__init__.py:475 msgid "index" msgstr "索引" -#: sphinx/builders/html/__init__.py:540 +#: sphinx/builders/html/__init__.py:537 msgid "next" msgstr "下一頁" -#: sphinx/builders/html/__init__.py:549 +#: sphinx/builders/html/__init__.py:546 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html/__init__.py:643 +#: sphinx/builders/html/__init__.py:640 msgid "generating indices" msgstr "正在產生索引" -#: sphinx/builders/html/__init__.py:658 +#: sphinx/builders/html/__init__.py:655 msgid "writing additional pages" msgstr "" -#: sphinx/builders/html/__init__.py:737 +#: sphinx/builders/html/__init__.py:734 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html/__init__.py:745 +#: sphinx/builders/html/__init__.py:742 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 +#: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" msgstr "" -#: sphinx/builders/html/__init__.py:810 +#: sphinx/builders/html/__init__.py:807 msgid "copying static files" msgstr "" -#: sphinx/builders/html/__init__.py:826 +#: sphinx/builders/html/__init__.py:823 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html/__init__.py:831 +#: sphinx/builders/html/__init__.py:828 msgid "copying extra files" msgstr "" -#: sphinx/builders/html/__init__.py:837 +#: sphinx/builders/html/__init__.py:834 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html/__init__.py:844 +#: sphinx/builders/html/__init__.py:841 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html/__init__.py:892 +#: sphinx/builders/html/__init__.py:889 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:953 +#: sphinx/builders/html/__init__.py:950 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html/__init__.py:1046 +#: sphinx/builders/html/__init__.py:1043 #, 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:1051 +#: sphinx/builders/html/__init__.py:1048 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html/__init__.py:1080 +#: sphinx/builders/html/__init__.py:1077 msgid "dumping object inventory" msgstr "" -#: sphinx/builders/html/__init__.py:1085 +#: sphinx/builders/html/__init__.py:1082 #, python-format msgid "dumping search index in %s" msgstr "" -#: sphinx/builders/html/__init__.py:1127 +#: sphinx/builders/html/__init__.py:1124 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html/__init__.py:1214 +#: sphinx/builders/html/__init__.py:1211 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html/__init__.py:1217 +#: sphinx/builders/html/__init__.py:1214 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html/__init__.py:1225 +#: sphinx/builders/html/__init__.py:1222 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1229 +#: sphinx/builders/html/__init__.py:1226 #, python-format msgid "html_extra_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1238 +#: sphinx/builders/html/__init__.py:1235 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1242 +#: sphinx/builders/html/__init__.py:1239 #, python-format msgid "html_static_path entry %r is placed inside outdir" msgstr "" -#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 +#: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1260 +#: sphinx/builders/html/__init__.py:1257 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html/__init__.py:1280 +#: sphinx/builders/html/__init__.py:1277 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." msgstr "" -#: sphinx/builders/html/__init__.py:1306 +#: sphinx/builders/html/__init__.py:1303 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" @@ -1838,71 +1838,71 @@ msgstr "" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 +#: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299 #, python-format msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." msgstr "" -#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931 +#: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940 +#: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 msgid "Returns" msgstr "回傳" -#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 +#: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223 #: sphinx/domains/python.py:403 msgid "Return type" msgstr "回傳型態" -#: sphinx/domains/c.py:3207 +#: sphinx/domains/c.py:3224 #, python-format msgid "%s (C %s)" msgstr "%s (C %s)" -#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578 +#: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578 msgid "member" msgstr "成員函數" -#: sphinx/domains/c.py:3715 +#: sphinx/domains/c.py:3732 msgid "variable" msgstr "變數" -#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577 +#: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:3717 +#: sphinx/domains/c.py:3734 msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:3718 +#: sphinx/domains/c.py:3735 msgid "struct" msgstr "結構" -#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576 +#: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576 msgid "union" msgstr "union" -#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581 +#: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581 msgid "enum" msgstr "enum" -#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582 +#: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579 +#: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579 msgid "type" msgstr "型別" -#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584 +#: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584 msgid "function parameter" msgstr "函式參數" @@ -3474,11 +3474,11 @@ msgstr "" msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/__init__.py:515 +#: sphinx/util/__init__.py:532 msgid "skipped" msgstr "" -#: sphinx/util/__init__.py:520 +#: sphinx/util/__init__.py:537 msgid "failed" msgstr "" From b1b512576189a19323122d03073c5801cc0b73df Mon Sep 17 00:00:00 2001 From: David Ham Date: Sun, 4 Jul 2021 20:05:33 +0100 Subject: [PATCH 141/160] Changes requested by review. --- sphinx/texinputs/sphinxlatexcontainers.sty | 27 +++++++++++++--------- sphinx/writers/latex.py | 4 ++-- 2 files changed, 18 insertions(+), 13 deletions(-) diff --git a/sphinx/texinputs/sphinxlatexcontainers.sty b/sphinx/texinputs/sphinxlatexcontainers.sty index 1036fde539a..c15001c4945 100644 --- a/sphinx/texinputs/sphinxlatexcontainers.sty +++ b/sphinx/texinputs/sphinxlatexcontainers.sty @@ -3,15 +3,20 @@ % change this info string if making any custom modification \ProvidesFile{sphinxlatexcontainers.sty}[2021/05/03 containers] -% The purpose of this file is to provide a dummy environment sphinxclass -% which will be inserted for each class in each container directive. The class -% name will be passed as the argument to the environment. User-defined -% formatting of directives can be achieved by renewing the definition of this -% environment, and branching on the value of the argument. +% The purpose of this file is to provide a dummy environment sphinxclass which +% will be inserted for each class in each container directive. The class name +% will be passed as the argument to the environment. +% +% For a class foo, the user can define customised handling of that class by +% defining the sphinxclassfoo LaTeX environment. -\ifx\sphinxclass\undefined % poor man's "provideenvironment" - \newenvironment{sphinxclass}[1]{ - \def\sphinxClassFunctionName{sphinxCLASS#1}% - \csname \sphinxClassFunctionName \endcsname}% - {\csname end\sphinxClassFunctionName \endcsname}% -\fi \ No newline at end of file +\newenvironment{sphinxuseclass}[1]{% + \def\sphinxClassFunctionName{sphinxclass#1}% + \ltx@ifundefined{\sphinxClassFunctionName}% + {}% undefined so do nothing + {\expandafter\begin\expandafter{\sphinxClassFunctionName}}% +{% + \ltx@ifundefined{\sphinxClassFunctionName}% + {}% we did nothing so we keep doing nothing + {\expandafter\end\expandafter{\sphinxClassFunctionName}}% +}% diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 9a9c63b8fb3..a08d6568e80 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1977,12 +1977,12 @@ def depart_compound(self, node: Element) -> None: def visit_container(self, node: Element) -> None: classes = node.get('classes', []) for c in classes: - self.body.append('\n\\begin{sphinxclass}{%s}' % c) + self.body.append('\n\\begin{sphinxuseclass}{%s}' % c) def depart_container(self, node: Element) -> None: classes = node.get('classes', []) for c in classes: - self.body.append('\n\\end{sphinxclass}') + self.body.append('\n\\end{sphinxuseclass}') def visit_decoration(self, node: Element) -> None: pass From 52aac401482015e9f38988f39679f5cfaa14cc56 Mon Sep 17 00:00:00 2001 From: David Ham Date: Sun, 4 Jul 2021 20:15:56 +0100 Subject: [PATCH 142/160] Update tests to match code changes. --- tests/roots/test-latex-container/index.rst | 2 +- tests/test_build_latex.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/roots/test-latex-container/index.rst b/tests/roots/test-latex-container/index.rst index 339a625221d..899788bd5f2 100644 --- a/tests/roots/test-latex-container/index.rst +++ b/tests/roots/test-latex-container/index.rst @@ -1,4 +1,4 @@ .. container:: classname - text + text \ No newline at end of file diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index 7bb747cb858..e0cfce953d7 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -1605,5 +1605,5 @@ def test_latex_nested_tables(app, status, warning): def test_latex_container(app, status, warning): app.builder.build_all() result = (app.outdir / 'python.tex').read_text() - assert r'\begin{sphinxclass}{classname}' in result - assert r'\end{sphinxclass}' in result + assert r'\begin{sphinxuseclass}{classname}' in result + assert r'\end{sphinxuseclass}' in result From 5b3bd3f43a3aa7bcff48d530233afc3bedbb1394 Mon Sep 17 00:00:00 2001 From: David Ham Date: Sun, 4 Jul 2021 21:10:52 +0100 Subject: [PATCH 143/160] Put the brackets in the right places. --- sphinx/texinputs/sphinxlatexcontainers.sty | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/texinputs/sphinxlatexcontainers.sty b/sphinx/texinputs/sphinxlatexcontainers.sty index c15001c4945..93b2c8c086a 100644 --- a/sphinx/texinputs/sphinxlatexcontainers.sty +++ b/sphinx/texinputs/sphinxlatexcontainers.sty @@ -15,7 +15,7 @@ \ltx@ifundefined{\sphinxClassFunctionName}% {}% undefined so do nothing {\expandafter\begin\expandafter{\sphinxClassFunctionName}}% -{% +}{% \ltx@ifundefined{\sphinxClassFunctionName}% {}% we did nothing so we keep doing nothing {\expandafter\end\expandafter{\sphinxClassFunctionName}}% From 13831572d564a811c4d90839350e73703d34293f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 5 Jul 2021 09:11:47 +0200 Subject: [PATCH 144/160] Keep old name for root document in the glossary --- doc/glossary.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/glossary.rst b/doc/glossary.rst index f989df1aeec..ca12067c490 100644 --- a/doc/glossary.rst +++ b/doc/glossary.rst @@ -73,9 +73,12 @@ Glossary For more information, refer to :doc:`/usage/extensions/index`. - root document + master document The document that contains the root :rst:dir:`toctree` directive. + root document + Same as :term:`master document`. + object The basic building block of Sphinx documentation. Every "object directive" (e.g. :rst:dir:`function` or :rst:dir:`object`) creates such a From d5f452a81f3d2cd0fac35fe4d3ead08d66922ab8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 5 Jul 2021 09:12:40 +0200 Subject: [PATCH 145/160] Remove redundant local table of contents --- doc/tutorial/index.rst | 3 --- 1 file changed, 3 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 24d56f28c2f..ae9a82000dd 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -27,9 +27,6 @@ a basic understanding of how it works, as well as a working Python installation for development, since you will use *Python virtual environments* to create the project. -.. contents:: Contents - :local: - Getting started --------------- From 74e565f99bcbe664b8d1cb7641abd1b0c64dd2e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 5 Jul 2021 09:21:55 +0200 Subject: [PATCH 146/160] Consistent use of "build documentation" --- doc/tutorial/index.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index ae9a82000dd..b3e388258f9 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -150,8 +150,8 @@ There we go! You created your first HTML documentation using Sphinx. First steps to document your project using Sphinx ------------------------------------------------- -Converting your documentation to HTML -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Building your HTML documentation +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The ``index.rst`` file that ``sphinx-quickstart`` created has some content already, and it gets rendered as the front page of your HTML documentation. It @@ -194,12 +194,12 @@ as before, or leverage the convenience script as follows: After running this command, you will see that ``index.html`` reflects the new changes! -Exporting your documentation to other formats -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +Building your documentation in other formats +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Sphinx supports a variety of formats apart from HTML, including PDF, EPUB, -:ref:`and more `. For example, to build your documentation as an -e-book in EPUB format, run this command from the ``docs`` directory: +:ref:`and more `. For example, to build your documentation +in EPUB format, run this command from the ``docs`` directory: .. code-block:: console @@ -376,7 +376,7 @@ to the structure of your project, which so far looks like this: index └── usage -If you export the documentation to HTML running ``make html``, you will see +If you build the HTML documentation running ``make html``, you will see that the ``toctree`` gets rendered as a list of hyperlinks, and this allows you to navigate to the new page you just created. Neat! From 50bd1c3967fae76e36a5b1d386e3cbad637f6da1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 5 Jul 2021 09:22:14 +0200 Subject: [PATCH 147/160] Remove unnecessary label --- doc/tutorial/index.rst | 2 +- doc/usage/restructuredtext/directives.rst | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index b3e388258f9..7a7a310c394 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -346,7 +346,7 @@ As an example, create a new file ``docs/source/usage.rst`` (next to (.venv) $ pip install lumache This new file contains two :ref:`section ` headers, normal -paragraph text, and a :ref:`code-block ` directive that renders +paragraph text, and a :rst:dir:`code-block` directive that renders a block of content as source code, with appropriate syntax highlighting (in this case, generic ``console`` text). diff --git a/doc/usage/restructuredtext/directives.rst b/doc/usage/restructuredtext/directives.rst index 329bdef5d11..2a9743e948d 100644 --- a/doc/usage/restructuredtext/directives.rst +++ b/doc/usage/restructuredtext/directives.rst @@ -488,8 +488,6 @@ __ https://pygments.org/docs/lexers .. versionadded:: 2.1 -.. _rst-code-block: - .. rst:directive:: .. code-block:: [language] Example:: From f303a4a9ed9196cd767f127aff292d9bcfd28514 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 5 Jul 2021 09:25:05 +0200 Subject: [PATCH 148/160] Consistent use of "rst" for syntax highlight --- doc/tutorial/index.rst | 14 +++++++------- doc/usage/quickstart.rst | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 7a7a310c394..12ae10e11c0 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -36,7 +36,7 @@ Setting up your project and development environment In a new directory, create a file called ``README.rst`` with the following content. -.. code-block:: rest +.. code-block:: rst :caption: README.rst Lumache @@ -159,7 +159,7 @@ is written in reStructuredText, a powerful markup language. Modify the file as follows: -.. code-block:: rest +.. code-block:: rst :caption: docs/source/index.rst Welcome to Lumache's documentation! @@ -330,7 +330,7 @@ grows. As an example, create a new file ``docs/source/usage.rst`` (next to ``index.rst``) with these contents: -.. code-block:: rest +.. code-block:: rst :caption: docs/source/usage.rst Usage @@ -358,7 +358,7 @@ be a *subsection* of "Usage". To complete the process, add a ``toctree`` :ref:`directive ` at the end of ``index.rst`` including the document you just created, as follows: -.. code-block:: rest +.. code-block:: rst :caption: docs/source/index.rst Contents @@ -397,7 +397,7 @@ them! To add a cross-reference, write this sentence right after the introduction paragraph in ``index.rst``: -.. code-block:: rest +.. code-block:: rst :caption: docs/source/index.rst Check out the :doc:`usage` section for further information. @@ -412,7 +412,7 @@ explicit *label* that can act as a target. For example, to reference the "Installation" subsection, add a label right before the heading, as follows: -.. code-block:: rest +.. code-block:: rst :caption: docs/source/usage.rst :emphasize-lines: 4 @@ -428,7 +428,7 @@ before the heading, as follows: And make the sentence you added in ``index.rst`` look like this: -.. code-block:: rest +.. code-block:: rst :caption: docs/source/index.rst Check out the :doc:`usage` section for further information, including how to diff --git a/doc/usage/quickstart.rst b/doc/usage/quickstart.rst index ec36f5df9b0..8644a00213d 100644 --- a/doc/usage/quickstart.rst +++ b/doc/usage/quickstart.rst @@ -74,14 +74,14 @@ multiple files to a single hierarchy of documents. The ``toctree`` directive initially is empty, and looks like so: -.. code-block:: rest +.. code-block:: rst .. toctree:: :maxdepth: 2 You add documents listing them in the *content* of the directive: -.. code-block:: rest +.. code-block:: rst .. toctree:: :maxdepth: 2 @@ -172,7 +172,7 @@ The most prominent domain is the Python domain. For example, to document Python's built-in function ``enumerate()``, you would add this to one of your source files. -.. code-block:: restructuredtext +.. code-block:: rst .. py:function:: enumerate(sequence[, start=0]) @@ -193,7 +193,7 @@ given, each in its own line. The Python domain also happens to be the default domain, so you don't need to prefix the markup with the domain name. -.. code-block:: restructuredtext +.. code-block:: rst .. function:: enumerate(sequence[, start=0]) From 6f9bc6e7e5d571adec4bad942e8d2f4d3a71a1be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 5 Jul 2021 09:30:30 +0200 Subject: [PATCH 149/160] Use "builtin" for extensions label as it is done for themes --- doc/tutorial/index.rst | 4 ++-- doc/usage/extensions/index.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index 12ae10e11c0..b173a8ed9a2 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -250,7 +250,7 @@ Enabling a built-in extension In addition to these configuration values, you can customize Sphinx even more by using :doc:`extensions `. Sphinx ships several -:ref:`built-in ones `, and there are many more +:ref:`builtin ones `, and there are many more :ref:`maintained by the community `. For example, to enable the :mod:`sphinx.ext.duration` extension, @@ -283,7 +283,7 @@ Using a third-party HTML theme ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Themes, on the other hand, are a way to customize the appearance of your -documentation. Sphinx has several :ref:`built-in themes `, and +documentation. Sphinx has several :ref:`builtin themes `, and there are also `third-party ones `_. For example, to use the `Furo `_ third-party theme diff --git a/doc/usage/extensions/index.rst b/doc/usage/extensions/index.rst index 389d9ccbd9e..37d71c5034f 100644 --- a/doc/usage/extensions/index.rst +++ b/doc/usage/extensions/index.rst @@ -10,7 +10,7 @@ This chapter describes the extensions bundled with Sphinx. For the API documentation on writing your own extension, refer to :ref:`dev-extensions`. -.. _built-in-extensions: +.. _builtin-extensions: Built-in extensions ------------------- From cb846a39e0582ade5b852b425c9e047bde995a06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Luis=20Cano=20Rodr=C3=ADguez?= Date: Mon, 5 Jul 2021 09:35:01 +0200 Subject: [PATCH 150/160] Add link to docutils docs --- doc/tutorial/index.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/doc/tutorial/index.rst b/doc/tutorial/index.rst index b173a8ed9a2..6ff26869516 100644 --- a/doc/tutorial/index.rst +++ b/doc/tutorial/index.rst @@ -407,7 +407,9 @@ in the project, in this case the ``usage.rst`` you created earlier. Alternatively, you can also add a cross-reference to an arbitrary part of the project. For that, you need to use the :rst:role:`ref` role, and add an -explicit *label* that can act as a target. +explicit *label* that acts as `a target`__. + +__ https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#hyperlink-targets For example, to reference the "Installation" subsection, add a label right before the heading, as follows: From 007795da0171f4d77df97027401a5e285111fad0 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 6 Jul 2021 00:40:29 +0900 Subject: [PATCH 151/160] Bump to 4.0.3 final --- CHANGES | 16 ++-------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/CHANGES b/CHANGES index c9c3538b3d3..a0b01936449 100644 --- a/CHANGES +++ b/CHANGES @@ -1,14 +1,5 @@ -Release 4.0.3 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- +Release 4.0.3 (released Jul 05, 2021) +===================================== Features added -------------- @@ -31,9 +22,6 @@ Bugs fixed See also :confval:`c_extra_keywords`. * #9322: KeyError is raised on PropagateDescDomain transform -Testing --------- - Release 4.0.2 (released May 20, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index d566b824a1d..c4e4134ed01 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,7 +27,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.0.3+' +__version__ = '4.0.3' __released__ = '4.0.3' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -38,7 +38,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 0, 3, 'beta', 0) +version_info = (4, 0, 3, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From f9644cb080939d667b968754e889d6fafb985754 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 6 Jul 2021 00:42:20 +0900 Subject: [PATCH 152/160] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index a0b01936449..486cc2408b7 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 4.0.4 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 4.0.3 (released Jul 05, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index c4e4134ed01..73dad5a4614 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,8 +27,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.0.3' -__released__ = '4.0.3' # used when Sphinx builds its own docs +__version__ = '4.0.4+' +__released__ = '4.0.4' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -38,7 +38,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 0, 3, 'final', 0) +version_info = (4, 0, 4, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From 56aea3b7141dcdca447bfadf2a8ae1e0cb6ce5d7 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 6 Jul 2021 00:52:11 +0900 Subject: [PATCH 153/160] doclinter: Allow anonymous hyperlink target having long URL --- utils/doclinter.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/utils/doclinter.py b/utils/doclinter.py index 6299fe46acf..48e40e90a51 100644 --- a/utils/doclinter.py +++ b/utils/doclinter.py @@ -49,6 +49,9 @@ def lint(path: str) -> int: if re.match(r'^\s*\.\. ', line): # ignore directives and hyperlink targets pass + elif re.match(r'^\s*__ ', line): + # ignore anonymous hyperlink targets + pass elif re.match(r'^\s*``[^`]+``$', line): # ignore a very long literal string pass From 7d8a41eb38da078793da647e68d1a2827be0eca4 Mon Sep 17 00:00:00 2001 From: jfbu <2589111+jfbu@users.noreply.github.com> Date: Mon, 5 Jul 2021 20:13:31 +0200 Subject: [PATCH 154/160] Update CHANGES for #9166 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 890b2ec5225..da1245f3251 100644 --- a/CHANGES +++ b/CHANGES @@ -70,6 +70,7 @@ Features added (e.g., ``Sortable auto &v``). * C, add support for digit separators in literals. +* #9166: LaTeX: support containers in LaTeX output Bugs fixed From 748bdcc373cf28f6917a20f9ebb6acf5630760e2 Mon Sep 17 00:00:00 2001 From: Takayuki SHIMIZUKAWA Date: Thu, 17 Jun 2021 05:30:00 +0900 Subject: [PATCH 155/160] using new issue template feature in yaml configuration --- .github/ISSUE_TEMPLATE/bug_report.md | 46 ------------- .github/ISSUE_TEMPLATE/bug_report.yml | 96 +++++++++++++++++++++++++++ 2 files changed, 96 insertions(+), 46 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/bug_report.yml diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 0fa6b61fe73..00000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,46 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: '' -labels: 'bug' -assignees: '' - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -``` - - -$ git clone https://github.com/.../some_project -$ cd some_project -$ pip install -r requirements.txt -$ cd docs -$ make html SPHINXOPTS="-D language=de" -$ # open _build/html/index and see bla bla -``` - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Your project** -Link to your sphinx project, or attach zipped small project sample. - -**Screenshots** -If applicable, add screenshots to help explain your problem. - -**Environment info** -- OS: [e.g. Unix/Linux/Mac/Win/other with version] -- Python version: [e.g. 3.7.1] -- Sphinx version: [e.g. 1.8.2] -- Sphinx extensions: [e.g. sphinx.ext.autodoc, recommonmark] -- Extra tools: [e.g. Browser, tex or something else] - -**Additional context** -Add any other context about the problem here. - -- [e.g. URL or Ticket] - diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 00000000000..4f4be164795 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,96 @@ +name: Bug report +description: Something is not working correctly. +title: "" +labels: "bug" +assignees: "" + +body: + - type: textarea + attributes: + label: Describe the bug + description: >- + A clear and concise description of what the bug is. + validations: + required: true + + - type: textarea + attributes: + label: How to Reproduce + description: Please provide steps to reproduce this bug. + value: | + + ``` + $ git clone https://github.com/.../some_project + $ cd some_project + $ pip install -r requirements.txt + $ cd docs + $ make html SPHINXOPTS="-D language=de" + $ # open _build/html/index and see bla bla + ``` + validations: + required: true + + - type: textarea + attributes: + label: Expected behavior + description: >- + A clear and concise description of what you expected to happen. + + - type: input + attributes: + label: Your project + description: >- + Link to your sphinx project, or attach zipped small project sample. + validations: + required: true + + - type: textarea + attributes: + label: Screenshots + description: >- + If applicable, add screenshots to help explain your problem. + validations: + required: false + + - type: markdown + attributes: + value: | + ## Environment info + + - type: input + attributes: + label: OS + description: >- + [e.g. Unix/Linux/Mac/Win/other with version] + validations: + required: true + - type: input + attributes: + label: Python version + validations: + required: true + - type: input + attributes: + label: Sphinx version + validations: + required: true + - type: input + attributes: + label: Sphinx extensions + description: >- + [e.g. sphinx.ext.autodoc, recommonmark] + validations: + required: false + - type: input + attributes: + label: Extra tools + description: >- + [e.g. Browser, tex or something else] + validations: + required: false + - type: textarea + attributes: + label: Additional context + description: >- + Add any other context about the problem here. + [e.g. URL or Ticket] From 996c5855bcda6cc49986bcecd18290c9fcd5e06c Mon Sep 17 00:00:00 2001 From: Takayuki SHIMIZUKAWA Date: Thu, 17 Jun 2021 05:31:22 +0900 Subject: [PATCH 156/160] Update and rename bug_report.yml to bug-report.yml --- .github/ISSUE_TEMPLATE/{bug_report.yml => bug-report.yml} | 2 -- 1 file changed, 2 deletions(-) rename .github/ISSUE_TEMPLATE/{bug_report.yml => bug-report.yml} (96%) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml similarity index 96% rename from .github/ISSUE_TEMPLATE/bug_report.yml rename to .github/ISSUE_TEMPLATE/bug-report.yml index 4f4be164795..18434754650 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -1,8 +1,6 @@ name: Bug report description: Something is not working correctly. -title: "" labels: "bug" -assignees: "" body: - type: textarea From c19c74e0a35a999ff867bd21f961793d6dbf56ab Mon Sep 17 00:00:00 2001 From: igo95862 Date: Tue, 6 Jul 2021 17:45:43 +0300 Subject: [PATCH 157/160] doc: Fix typo in sphinx.locale.get_translation docstring --- sphinx/locale/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index 1ce65e1e326..11415e16868 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -214,7 +214,7 @@ def get_translation(catalog: str, namespace: str = 'general') -> Callable: def setup(app): - package_dir = path.abspath(path.dirname(__file__)) + package_dir = os.path.abspath(os.path.dirname(__file__)) locale_dir = os.path.join(package_dir, 'locales') app.add_message_catalog(MESSAGE_CATALOG_NAME, locale_dir) From 2b62b4e639413e9c2a6dd88e2c757c5ea46e1618 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 7 Jul 2021 02:00:56 +0900 Subject: [PATCH 158/160] Update CHANGES for PR #9358 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 33c29f67086..8ca9310ac1f 100644 --- a/CHANGES +++ b/CHANGES @@ -40,6 +40,7 @@ Features added * #9384: autodoc: ``autodoc_typehints='none'`` now erases typehints for variables, attributes and properties * #3257: autosummary: Support instance attributes for classes +* #9358: html: Add "heading" role to the toctree items * #9129: html search: Show search summaries when html_copy_source = False * #9307: html search: Prevent corrections and completions in search field * #9120: html theme: Eliminate prompt characters of code-block from copyable From c2e4820ba32ce37a870eda9ab6d4b6f1ef01df8f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 7 Jul 2021 02:06:30 +0900 Subject: [PATCH 159/160] Fix a flake8 violation --- tests/test_quickstart.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index 02140cf0223..6c2f70ec47b 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -254,7 +254,7 @@ def test_extensions(tempdir): def test_exits_when_existing_confpy(monkeypatch): - # The code detects existing conf.py with path.isfile() + # The code detects existing conf.py with path.isfile() # so we mock it as True with pytest's monkeypatch def mock_isfile(path): return True From f0fef96906d80d89e290a780767a92ba85977733 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 7 Jul 2021 02:07:16 +0900 Subject: [PATCH 160/160] Update CHANGES for PR #9320 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 8ca9310ac1f..f06f9bc0ac8 100644 --- a/CHANGES +++ b/CHANGES @@ -95,6 +95,7 @@ Bugs fixed * #9306: Linkcheck reports broken link when remote server closes the connection on HEAD request * #9280: py domain: "exceptions" module is not displayed +* #9319: quickstart: Make sphinx-quickstart exit when conf.py already exists * #9387: xml: XML Builder ignores custom visitors * #9224: ``:param:`` and ``:type:`` fields does not support a type containing whitespace (ex. ``Dict[str, str]``)